摘要:
#include<stdio.h>#include<stdlib.h> typedef struct List{ int data; struct List *next;} List; List *createlist();void printflist(List *pre);List *sort( 阅读全文
posted @ 2017-03-13 13:17
hamawep
阅读(204)
评论(1)
推荐(0)