test
摘要: 1 #include 2 #include 3 #include 4 #include 5 #define MAXSIZE 10 6 typedef struct { 7 int L[MAXSIZE+1]; 8 int length; 9 10 }List,*list; 11 void swap(List &L,int low,int high){ 12 int temp; 13 temp=L.L[low]; 14 L.L[low] = L.L[high]; 15 L.L[high]=te... 阅读全文
posted @ 2012-12-10 23:45 フ天天好心情 阅读(304) 评论(0) 推荐(0) 编辑