2013年7月20日
摘要: #include#include#includetypedef struct Node { int data; struct Node * pNode } NODE,* PNODE;PNODE create_list();void show_list(PNODE);int is_emp(PNODE);int length_list(PNODE);int insert_list(PNODE,int,int);int delete_list(PNODE,int,int *);void sort_list(PNODE);int main(void) { PNODE p = create_list() 阅读全文
posted @ 2013-07-20 20:00 c3tc3tc3t 阅读(277) 评论(0) 推荐(0)