摘要:void merge(slnodetype *headA,slnodestype *headB){ slnodetype *tempA ,*tempB,*temp; tempA=headA; tempB=headB; //循环每个A中元素,把比A中元素小的B中元素放在其前面 while(tempA->next!=headA) { temp=tempA; //循环B中元素,把...
阅读全文
posted @ 2006-05-24 22:43