首页 > 编程语言 > 详细

排序两个排序的链表----递归非递归实现

时间:2016-08-22 23:11:46      阅读:101      评论:0      收藏:0      [点我收藏+]
 ListNode* Merge1(ListNode* pHead1, ListNode* pHead2)
 {
     if(pHead1 == NULL)
         return pHead2;
     else if(pHead2 == NULL)
         return pHead1;
     
     ListNode* pMergedHead = NULL;
     
     if(pHead1->m_nValue < pHead2->m_nValue)
     {
         pMergedHead = pHead1;
         pMergedHead->m_pNext = Merge1(pHead1->m_pNext, pHead2);
     }
     else
      {
         pMergedHead = pHead2;
         pMergedHead->m_pNext = Merge1(pHead1, pHead2->m_pNext);
      }
     
     return pMergedHead;
 }

 

   ListNode* Merge(ListNode* pHead1, ListNode* pHead2)
    {
      if(pHead1 == NULL)
         return pHead2;
      if(pHead2 == NULL)
          return pHead1;
 
      ListNode* NewHead=NULL;
        ListNode* temp=NULL;
        ListNode* pNode1 = pHead1;
        ListNode* pNode2 = pHead2;
        while(pNode1!=NULL && pNode2!=NULL)
        {
            if(NewHead==NULL)
            {
                if(pNode1->val <= pNode2->val)
                {
                    NewHead =pNode1;
                    pNode1 = pNode1->next;
                }
                else
                {
                    NewHead =pNode2;
                    pNode2 = pNode2->next;
                }
                temp=NewHead;
            }
            else
            {
                if(pNode1->val <= pNode2->val)
                {
                    temp->next=pNode1;
                    pNode1=pNode1->next;
                    //temp->next=NULL;
                    temp=temp->next;
                }
                else 
                {
                    temp->next=pNode2;
                    pNode2=pNode2->next;
                    //temp->next=NULL;
                    temp=temp->next;
                }
            }
 
        }
        if(pNode1==NULL && pNode2!=NULL)
            temp->next=pNode2;
        else if(pNode2==NULL && pNode1!=NULL)
            temp->next=pNode1; 
            
        return NewHead;
    }

 

排序两个排序的链表----递归非递归实现

原文:http://www.cnblogs.com/xiaodi914/p/5797200.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!