摘要: 问题一:(引用编程之美)如果两个链表相交,则尾节点一定是公共的问题二:头插法建链表(补充,头指针而非投节点) 1 node* createList(int array[],int n){ 2 node* head=NULL; 3 node* temp=NULL; 4 for(... 阅读全文
posted @ 2014-09-16 15:15 liuzhiminxd 阅读(222) 评论(0) 推荐(0) 编辑