文章分类 - algorithm and data structure
Post some what one has learned from code
摘要:1 /* 2 * Insert sort algorithm 3 * Powered by xcssp 4 */ 5 6 #include <stdio.h> 7 #include <stdlib.h> 8 #define MAXSIZE 20 9 10 typedef int KeyType; 11 typedef struct{ 12 KeyType key; 13 }RedType; 14 typedef struct{ 15 RedType r[MAXSIZE+1]; 16 int length; 17 }Sqlist; 18...
阅读全文

浙公网安备 33010602011771号