摘要: #include #include typedef struct _Node{ int value; struct _Node *next;}Node;Node *MergeList(Node *listA, Node *listB);void PrintList(Node *head);int m... 阅读全文
posted @ 2015-02-04 20:55 no-being 阅读(546) 评论(0) 推荐(0) 编辑