栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++ 构造双向链表的实现代码

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++ 构造双向链表的实现代码

构造双向链表,不足之处,还望指正! 
复制代码 代码如下:
// DoublelinkedList.cpp : 定义控制台应用程序的入口点。
//构造双向链表,实现从控制台输入,插入,删除,求大小size等操作
#include "stdafx.h"
#include
using namespace std;
//定义双向链表的节点
template
struct NODE
{
 NODE* pre;
 T data;
 NODE* next;
};
//定义双向链表容器
template
class DoublelinkedList
{
public:
 DoublelinkedList()
 {
  NODE* q = new NODE;
  if (q == NULL)
  {
   cout << "Fail to malloc the head node." << endl;
   return;
  }
  phead = q;
  phead->pre = NULL;
  phead->data = NULL;
  phead->next = NULL;

  T i;
  cout << "Please input several integer number, input ctrl+z to the end: " << endl;
  while (cin >> i)
  {
   NODE* p = new NODE;
   if (p == NULL)
   {
    cout << "Fail to malloc a new node." << endl;
    return;
   }
   p->data = i;
   q->next = p;
   p->pre = q;
   p->next = NULL;
   q = q->next;
  }
 }

 //容器大小方法
 int size()
 {
  NODE* p = phead->next;
  int count(0);
  while (p != NULL)
  {
   count++;
   p = p->next;
  }
  return count;
 }

 //输出DoublelinkedLIst中的元素
 void print_elements()
 {
  NODE* p = phead->next;
  while (p != NULL)
  {
   cout << p->data << " ";
   p = p->next;
  }
  cout << endl;
 }
 //插入一个元素到DoublelinkedList中,任意合法位置插入
 void insert_element(int i, T e)
 {
   if (i <= this->size())
  {
   NODE* m = phead;
   for (int j = 1; j < i; j ++)
   {
    m = m->next;
   }
   NODE* n = m->next;
   NODE* p = new NODE;
   if (p == NULL)
   {
    cout << "Failed to malloc the node." << endl;
   }
   m->next = p;
   p->pre = m;
   p->data = e;
   p->next = n;
   n->pre = p;
  }
  else if (i == (this->size()+1))
  {
   NODE* m = phead;
   for (int j = 1; j < i; j++)
   {
    m = m->next;
   }
   NODE* p = new NODE;
   if (p == NULL)
   {
    cout << "Failed to malloc the node." << endl;
   }
   m->next = p;
   p->pre = m;
   p->data = e;
   p->next = NULL;
  }
  else
  {
   cout << "Please input the position number equals or smaller than " << size()+1 << endl;
  }
 }

 //插入一个元素到DoublelinkedList中,只在末尾插入
 void insert_element(T e)
 {
  NODE* m = phead;
  for (int j = 1; j <= size(); j++)
  {
   m = m->next;
  }
  NODE* p = new NODE;
  if (p == NULL)
  {
   cout << "Failed to malloc the node." << endl;
  }
  m->next = p;
  p->pre = m;
  p->data = e;
  p->next = NULL;
 }

 //删除DoublelinkedList中的一个元素
 void delete_element(int i)
 {
  NODE* p = phead;
  for (int j = 0; j < i; j ++)
  {
   p = p->next;
   if (p == NULL)
   {//所要删除的元素超过list的范围
    cout << "The size of the list is " << size() << " ,Please input the right number." << endl;
    return;
   }
  }
  if(p->next != NULL)
  {//删除除最后一个以外的元素
   NODE* m = p->pre;
   NODE* n = p->next;
   m->next = n;
   n->pre = m;
   delete p;
  }
  else
  {//删除元素为最后一个
   NODE* m = p->pre;
   m->next = NULL;
   delete p;
  }
 }
private:
 NODE* phead;
};
int _tmain(int argc, _TCHAR* argv[])
{
 //测试代码
  DoublelinkedList mylist;
 mylist.print_elements();
 cout << "The size of the double linked list is : " << mylist.size() << endl;
 mylist.insert_element(1, 50);
 mylist.print_elements();
 mylist.insert_element(6, 80);
 mylist.print_elements();
 mylist.insert_element(250);
 mylist.print_elements();
 mylist.delete_element(7);
 mylist.print_elements();
 return 0;

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/66479.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号