程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言基礎知識 >> 探討:將兩個鏈表非降序合並為一個鏈表並依然有序的實現方法

探討:將兩個鏈表非降序合並為一個鏈表並依然有序的實現方法

編輯:C語言基礎知識
已知兩個鏈表list1和list,2,各自非降序排列,將它們合並成另外一個鏈表list3,並且依然有序,要求保留所有節點。
實現過程中,list1中的節點和list2中的節點都轉移到了list3中,注意泛型的友元函數的用法。
程序如有不足之處,還望指正!!!
定義List類
代碼如下:

#include "stdafx.h"
#include <iostream>

using namespace std;
template<class T>
struct Node
{
 T data;
 Node<T> * next;
};
template <class T>
class MyList
{
public:
 //構造函數,初始化一個頭結點,data為空,next指向第一個節點
 MyList()
 {
  phead = new Node<T>;
  phead->data = NULL;
  phead->next = NULL;
 }
 //析構函數,將整個鏈表刪除,這裡采用的是正序撤銷
 ~MyList()
 {
  Node<T>* p;
  p = phead;
  while (p)
  {
   Node<T>* q;
   q = p;
   p = p->next;
   delete q;
  }
 }
 //復制構造函數
 MyList(MyList& mylist)
 {
  Node<T>* q = mylist.phead->next;
  Node<T>* pb = new Node<T>;
  this->phead = pb;
  while (q != NULL)
  {
   Node<T>* p = new Node<T>;
   p->data = q->data;
   p->next = NULL;
   pb->next = p;
   pb = p;
   q = q->next;
  }
 }
 //插入一個元素的方法,在第i個元素插入一個元素e,
 //返回值為NOTE<T>型指針,指向插入的那個元素
 Node<T>* Insert(int i, T e)
 {
  //在鏈表的第i個位置,插入一個元素e
  int j = 0;
  Node<T>* p;
  p = phead;
  while (p && j < i - 1)
  {
   p = p->next;
   ++j;
  }
  if (!p || j > i -1)
  {
   return phead;
  }
  Node<T>* q;
  q = new Node<T>;
  q->data = e;
  q->next = p->next;
  p->next = q;
  return q;
 }
 //輸出list中的元素
 void Show()
 {
  Node<T> *p = phead->next;
  while (NULL != p)
  {
   cout << p->data << " ";
   p = p->next;
  }
 }
  template<class T> friend void MergeList(MyList<T> &list1, MyList<T> &list2, MyList<T> &list3);
private:
 Node<T>* phead;};  

代碼如下:

<PRE class=cpp name="code">// </PRE><PRE class=cpp name="code">//將兩個鏈表合並成一個鏈表,並且依然有序。方法保留了合並之前list1和list2的節點,
//合並之後list1和list2消失。將list1和list2合並為list3
template<class T>
void MergeList(MyList<T> &list1, MyList<T> &list2, MyList<T> &list3)
{
 Node<T> *head1 = list1.phead, *head2 = list2.phead;
 Node<T> *head3 = list3.phead, *temp = NULL;
 if (head1->next == NULL)
 {//如果list1為空,則list3頭指針指向list2
  head3 = head2;
  list2.phead->next = NULL;//將list2消除,防止析構函數析構list2時找不到對象
 }
 else if (head2->next == NULL)
 {//如果list1為空,則list3頭指針指向list2
  head3 = head1;
  list1.phead->next = NULL;//將list1消除,防止析構函數析構list2時找不到對象
 }
 head1 = head1->next;
 list1.phead->next = NULL;//將list1消除,防止析構函數析構list2時找不到對象
 head2 = head2->next;
 list2.phead->next = NULL;//將list2消除,防止析構函數析構list2時找不到對象
 if (head1->data < head2->data)
 {//如果list1的第一個元素小於list2的第一個元素
  head3->next = head1;//將list1的第一個元素接到list3上
  head1 = head1->next;
 }
 else
 {
  head3->next = head2;//將list2的第一個元素接到list3上
  head2 = head2->next;
 }
 temp = head3->next;//指向list3當前最後一個節點
 while (head1 != NULL && head2 != NULL)
 {
  if (head1->data < head2->data)
  {
   temp->next = head1;//將list1中的元素接到list3的後面
   temp = head1;
   head1 = head1->next;
  }
  else
  {
   temp->next = head2;//將list2中的元素接到list3的後面
   temp = head2;
   head2 = head2->next;
  }
 }
 if (NULL == head1) //將list1或者list2中的剩余部分接到list3的後面
 {
  temp->next = head2;
 }
 else if (NULL == head2)
 {
  temp->next = head1;
 }
}<PRE class=cpp name="code"> </PRE><PRE class=cpp name="code">//主函數</PRE><PRE class=cpp name="code">int _tmain(int argc, _TCHAR* argv[])
{
 MyList<int> list1, list2, list3; 
    for (int i = 1; i <= 10; i ++) 
    { 
       list1.Insert(i, 3*i); 
    list2.Insert(i, 2*i);
   }
   MergeList(list1, list2, list3);
 list3.Show();

 return 0;
}</PRE><BR>
<PRE></PRE>
<PRE></PRE>
<PRE></PRE>
<PRE></PRE>
<PRE></PRE>
<PRE></PRE>
<PRE></PRE>
<PRE></PRE>
</PRE>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved