Foundation Sorting: Single List Insertion Sort
摘要:
/* List Insertion Sorting. * Implementation history:. * 2013-09-15, Mars Fu, first version. */#include "stdafx.h"#include "list_insertion.h"int init_list(struct s_clist *hd, int max_cnt, struct s_nodes *nodes){ if (hd == NULL) return 0; if (max_cnt node = NULL; nodes->cur = hd 阅读全文
posted @ 2013-09-16 20:18 新一 阅读(220) 评论(0) 推荐(0)
浙公网安备 33010602011771号