摘要: #include #include typedef struct Lnode{ int data; struct Lnode *next;}Lnode;//头插法实现单链表Lnode* createLinkListByHead(int a[],int n){ Lnode* head=(Lnode*)... 阅读全文
posted @ 2013-10-27 21:59 楠楠IT 阅读(289) 评论(0) 推荐(0)