摘要:
#include "stdio.h" #define MAXSIZE 20 typedef int ElemType; typedef struct { ElemType r[MAXSIZE+1]; int length; }SortList; /* 冒泡排序:BubbleSort */ void BubbleSort(SortList *L) { int i,j;E... 阅读全文
posted @ 2019-01-03 11:18
自强·
阅读(280)
评论(0)
推荐(0)
摘要:
#include "stdio.h" #define MAXSIZE 20 typedef int ElemType; typedef struct { ElemType r[MAXSIZE+1]; int length; }SortList; void crelist(SortList *L) { int i = 0; ElemType x; printf("... 阅读全文
posted @ 2019-01-03 09:30
自强·
阅读(618)
评论(0)
推荐(0)