摘要:
1、直接插入排序 1 #include 2 3 struct node 4 { 5 int key; 6 }; 7 typedef struct node DataType; 8 9 int Ins_Sort(DataType Ar[],int n);10 11 int main(voi... 阅读全文
摘要:
1 #include 2 struct node 3 { 4 int key; 5 }; 6 typedef struct node DataType; 7 8 int Bub_sort(DataType Ar[],int n); 9 10 int main(void)11 {12 ... 阅读全文