文章分类 -  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... 阅读全文
posted @ 2012-10-08 13:56 指尖的舞客 阅读(151) 评论(0) 推荐(0)