冒泡排序(c語言實現)

#include <stdio.h> #define T 1 #define F 0 #define MAXSIZE 10 //要排序數組個數的最大值 typedef struct { int r[MAXSIZE + 1]; //存儲要排序數組,r[0]用做哨兵或臨時變量 int length; }SqList; void swap(SqList *L, int i, int j) {
相關文章
相關標籤/搜索