单链表归并
摘要:
#include<iostream>using namespace std;typedef struct linknode{int data;struct linknode *next;}nodetype;nodetype *hebing(nodetype *h1,nodetype *h2){nodetype *p1=h1,*p2=h2,*t1,*t2;nodetype *head=(... 阅读全文
posted @ 2010-10-28 11:51 CicyIris 阅读(201) 评论(0) 推荐(0)
浙公网安备 33010602011771号