数据结构之单链表——C++模板类实现

转自:http://blog.csdn.net/Mrx_Nh/article/details/60471647


单链表定义

[cpp] view plaincopy
  1. #ifndef SinglyLinkedListEDLIST_H_INCLUDED  
  2. #define SinglyLinkedListEDLIST_H_INCLUDED  
  3. #include <bits/stdc++.h>  
  4. using namespace std;  
  5.   
  6. template<class T>  
  7. class LinkNode {  
  8. public:  
  9.         LinkNode(LinkNode<T>* ptr = NULL) {cout << "Constructing a LinkNode by default way!" << endl; link = ptr;}  
  10.         LinkNode(const T& item, LinkNode<T>* ptr = NULL) {cout << "Constructing a LinkNode by defined way!" << endl; data = item, link = ptr;}  
  11.         ~LinkNode() {cout << "Desctructing a LineNode!" << endl; delete link;}  
  12.         T data;                    // Data Scope  
  13.         LinkNode<T> *link;         // Point Scope, Point to next Node  
  14. };  
  15.   
  16. // SinglyLinkedListList with head node  
  17. template <class T>  
  18. class SinglyLinkedList : public LinkNode<T> {  
  19. public:  
  20.         SinglyLinkedList() {cout << "Constructing a SinglyLinkedListList by default way" << endl; first = new LinkNode<T>;}  
  21.         SinglyLinkedList(const T&x);  
  22.         SinglyLinkedList(SinglyLinkedList<T>& L);       // Deep copy constructor function  
  23.         ~SinglyLinkedList() {cout << "Destructing a SinglyLinkedListNode by default way" << endl; delete first;}  
  24.         void makeEmpty();           // Delete all nodes in the SinglyLinkedList  
  25.         int Length() const;         // Get the length of the SinlyLinkedList  
  26.         LinkNode<T> *GetHead() const {return first;} // Return first  
  27.         LinkNode<T> *Search(T x);   // x can only be a variable while T& x  
  28.         LinkNode<T> *Locate(int i); // Get the i-th node's address  
  29.         bool GetData(int i, T& x);        // Get the data in i-th node and let x = data  
  30.         void SetData(int i, T& x);              // Make the data in i-th node equals x  
  31.         bool Insert(int i, T& x);               // Insert a node in i-th with its' data be x  
  32.         bool Remove(int i, T& x);               // Delete the i-th node and make x = node[i]->data  
  33.         bool IsEmpty() const {return first->link == NULL ? true : false;}  
  34.         bool IsFull() const {return false;}  
  35.         void Sort();                            // Sort all datas in the SinglyLinkedList by non-decreasing way  
  36.         void Input();                           // Input all elements  
  37.         void Output();                          // Out all elements  
  38.         SinglyLinkedList<T>& operator=(SinglyLinkedList<T>& L); // Overloading operator =  
  39. protected:  
  40.         LinkNode<T> *first;     // Point to Head node  
  41. };  
  42.   
  43. #endif // SinglyLinkedListEDLIST_H_INCLUDED  

单链表实现

[cpp] view plaincopy
  1. #include <bits/stdc++.h>  
  2. #include "SinglyLinkedList.h"  
  3.   
  4. using namespace std;  
  5.   
  6. template<class T>  
  7. SinglyLinkedList<T>::SinglyLinkedList(const T&x) {  
  8.         first = new LinkNode<T>;  
  9.         if(first == NULL) {  
  10.                 cerr << "Invalid allocation " << endl;  
  11.         }  
  12.         first->link->data = x;  
  13. }  
  14.   
  15. template<class T>  
  16. SinglyLinkedList<T>::SinglyLinkedList(SinglyLinkedList<T>& L) {        // Deep copy constructor function  
  17.         LinkNode<T> *destptr = first = new LinkNode<T>;  
  18.         LinkNode<T> *srcptr = L.GetHead();  
  19.         while(srcptr->link != NULL){  
  20.                 destptr->link = srcptr->link;  
  21.                 destptr->link->data = srcptr->link->data;  
  22.                 destptr = destptr->link;  
  23.                 srcptr = srcptr->link;  
  24.         }  
  25. }  
  26.   
  27. template<class T>  
  28. void SinglyLinkedList<T>::makeEmpty() {  
  29.         // Cannot delete first due to is the head in order to make some operation like insert more easy  
  30.         LinkNode<T> *current;  
  31.         while(first->link != NULL) {  
  32.                current = first->link;  
  33.                first->link = current->link;  
  34.                delete current;  
  35.         }  
  36. }  
  37.   
  38. template<class T>  
  39. int SinglyLinkedList<T>::Length() const {  
  40.         int cnt = 0;  
  41.         LinkNode<T> *current = first;  
  42.         while(current->link != NULL) {  
  43.                 cnt++;  
  44.                 current = current->link;  
  45.         }  
  46.         return cnt;  
  47. }  
  48.   
  49. template<class T>  
  50. LinkNode<T>* SinglyLinkedList<T>::Search(T x) {      // x can only be a variable while T& x  
  51.         LinkNode<T> *current = first;  
  52.         while(current->link != NULL) {  
  53.                 if(current->link->data == x) {  
  54.                         return current;  
  55.                 }  
  56.                 current = current->link;  
  57.         }  
  58.         return NULL;    // Not found  
  59. }  
  60.   
  61. template<class T>  
  62. LinkNode<T>* SinglyLinkedList<T>::Locate(int i) {  
  63.         // Return the address of i-th node  
  64.         if(i < 0) {  
  65.                 cerr << "Invalid Location of " << i << endl;  
  66.                 return NULL;  
  67.         }  
  68.         LinkNode<T> *current = first;  
  69.         int k = 0;  
  70.         while(current != NULL && k < i) {  
  71.                 current = current->link;  
  72.                 k++;  
  73.         }  
  74.         return current;         // Return NULL while i is too large  
  75. }  
  76.   
  77. template<class T>  
  78. bool SinglyLinkedList<T>::GetData(int i, T& x) {  
  79.         if(i <= 0) {  
  80.                 cerr << "Invalid index of " << i << endl;  
  81.                 return false;  
  82.         }  
  83.         LinkNode<T> *current = Locate(i);  
  84.         if(current == NULL) {  
  85.                 return false;  
  86.         }  
  87.         x = current->data;  
  88.         return true;  
  89. }  
  90.   
  91. template<class T>  
  92. void SinglyLinkedList<T>::SetData(int i, T& x) {  
  93.         if(i <= 0) {  
  94.                 cerr << "Invalid index of " << i << endl;  
  95.                 return ;  
  96.         }  
  97.         LinkNode<T> *current = Locate(i);  
  98.         if(current == NULL) return ;  
  99.         current->data = x;  
  100. }  
  101.   
  102. template<class T>  
  103. bool SinglyLinkedList<T>::Insert(int i, T& x) {  
  104.         // Insert a node behind i-th node  
  105.         if(i <= 0) {  
  106.                 cerr << "Invalid index of " << i << endl;  
  107.                 return false;  
  108.         }  
  109.         LinkNode<T> *current = Locate(i-1);  
  110.         if(current == NULL) {  
  111.                 return false;  
  112.         }  
  113.         LinkNode<T> *newLinkNode = new LinkNode<T>(x);  
  114.         if(newLinkNode == NULL) {  
  115.                 cerr << "Invalid allocation " << endl;  
  116.                 return false;  
  117.         }  
  118.         newLinkNode->link = current->link;  
  119.         current->link = newLinkNode;  
  120.         return true;  
  121. }  
  122.   
  123. template<class T>  
  124. bool SinglyLinkedList<T>::Remove(int i, T& x) {  
  125.         // Remove the i-th node is the SinglyLinkedList  
  126.         if(i <= 0) {  
  127.                 cerr << "Invalid position " << endl;  
  128.         }  
  129.         LinkNode<T> *current = Locate(i-1);  
  130.         if(current == NULL || current->link == NULL) {  
  131.                 return false;   // The SinglyLinkedList is too short  
  132.         }  
  133.         LinkNode<T> *del = current->link;  
  134.         x = del->data;  
  135.         current->link = del->link;  
  136.         delete del;  
  137.         return true;  
  138. }  
  139.   
  140. template<class T>  
  141. void SinglyLinkedList<T>::Sort() {  
  142.         // Sort all datas in the SinglyLinkedList by non-decreasing way  
  143.         LinkNode<T> *p = first->link;  
  144.         LinkNode<T> *q;  
  145.         T value;  
  146.         while(p->link != NULL) {  
  147.                 q = p->link;  
  148.                 while(q != NULL) {  
  149.                         if(q->data < p->data) {  
  150.                                 value = p->data;  
  151.                                 p->data = q->data;  
  152.                                 q->data = value;  
  153.                         }  
  154.                         q = q->link;  
  155.                 }  
  156.                 p = p->link;  
  157.         }  
  158. }  
  159.   
  160. template<class T>  
  161. void SinglyLinkedList<T>::Input() {  
  162.         int cnt;  
  163.         cout << "Please enter the total nodes of the SinglyLinkedListedList" << endl;  
  164.         while(true) {  
  165.                 cin >> cnt;  
  166.                 if(cnt <= 0) {  
  167.                         cerr << "Invalid length of SinglyLinkedListedList, the length must be a positive interger " << endl;  
  168.                 }  
  169.                 else break;  
  170.         }  
  171.         LinkNode<T> *current = first;  
  172.         T val;  
  173.         for(int i = 1; i <= cnt; ++i) {  
  174.                 cin >> val;  
  175.                 current->link = new LinkNode<T>(val);  
  176.                 current = current->link;  
  177.         }  
  178. }  
  179.   
  180. template<class T>  
  181. void SinglyLinkedList<T>::Output() {  
  182.         LinkNode<T> *current = first;  
  183.         int cnt = 1;  
  184.         while(current->link != NULL) {  
  185.                 cout << "#No. " << cnt++ << "  "  << current->link->data << endl;  
  186.                 current = current->link;  
  187.         }  
  188. }  
  189.   
  190. template<class T>  
  191. SinglyLinkedList<T>& SinglyLinkedList<T>::operator=(SinglyLinkedList<T>& L) {  
  192.         LinkNode<T> *srcptr, *destptr;  
  193.         destptr = first = new LinkNode<T>;  
  194.         srcptr = L.GetHead();  
  195.         while(srcptr->link != NULL) {  
  196.                 destptr->link = srcptr->link;  
  197.                 destptr->link->data = srcptr->link->data;  
  198.                 destptr = destptr->link;  
  199.                 srcptr = srcptr->link;  
  200.         }  
  201.         destptr->link = NULL;  
  202.         return *this;  
  203. }  
  204. int main()  
  205. {  
  206.         int a = 10;  
  207.         SinglyLinkedList<int> SinglyLinkedListList;  
  208.         if(SinglyLinkedListList.IsEmpty()) {  
  209.                 cout << "Jesus Christ, is empty!" << endl;  
  210.         }  
  211.         SinglyLinkedListList.Input();  
  212.         cout << "Length: " << SinglyLinkedListList.Length() << endl;  
  213.         SinglyLinkedListList.Sort();  
  214.         SinglyLinkedListList.Output();  
  215.         int num = 284;  
  216.         SinglyLinkedListList.Insert(1, num);  
  217.         SinglyLinkedListList.Insert(2, num);  
  218.         SinglyLinkedListList.Insert(3, num);  
  219.         SinglyLinkedListList.Output();  
  220.         cout << "\n----------------------------\n";  
  221.         SinglyLinkedListList.Sort();  
  222.         SinglyLinkedListList.Output();  
  223.         SinglyLinkedListList.GetData(1, a);  
  224.         cout << "a: " << a << endl;  
  225.         cout << "Length before remove the first element is:   " << SinglyLinkedListList.Length() << endl;  
  226.         SinglyLinkedListList.Remove(1, a);  
  227.         cout << "a: " << a << endl;  
  228.         cout << "Length after remove the first element is:   " << SinglyLinkedListList.Length() << endl;  
  229.         SinglyLinkedListList.Output();  
  230.         SinglyLinkedListList.makeEmpty();  
  231.         if(SinglyLinkedListList.IsEmpty()) {  
  232.                 cout << "Jesus Christ, is Empty!" << endl;  
  233.         }  
  234.   
  235.         return 0;  
  236. }  

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/384421.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux系统编程(一)

Linux系统编程&#xff08;一&#xff09;一、进程和程序二、内存布局内核空间用户空间三、进程状态四、环境变量五、进程共享一、进程和程序 程序&#xff1a;是指编译好的二进制文件&#xff0c;存储在磁盘中&#xff0c;不占用系统资源。 进程&#xff1a;是系统进行资源分…

Linux的SOCKET编程 简单演示

转载&#xff1a;http://blog.csdn.net/hguisu/article/details/7445768/ Linux的SOCKET编程详解 1. 网络中进程之间如何通信 进 程通信的概念最初来源于单机系统。由于每个进程都在自己的地址范围内运行&#xff0c;为保证两个相互通信的进 程之间既互不干扰又协调一致工作&a…

Unity(一)必然事件

【MonoBehaviour 类】&#xff08;一&#xff09;必然事件一、必然事件是什么&#xff1f;二、常用函数执行顺序1.Awake2.Start3.update4.FixedUpdate三、Awake和start区别一、必然事件是什么&#xff1f; 在Unity中必然事件也称脚本生命周期&#xff0c;是指在Unity脚本在唤醒…

正则匹配函数

转载&#xff1a;http://blog.csdn.net/ithomer/article/details/6130806 1.int regcomp(regex_t *compiled, const char *pattern, int cflags) 这个函数把指定的规则表达式pattern编译成一种特定的数据格式compiled&#xff0c;这样可以使匹配更有效。函数regexec会使用这个数…

Linux系统编程(二)孤儿进程和僵尸进程

Linux系统编程&#xff08;二&#xff09;一、exec函数族1.exec函数二、孤儿进程和僵尸进程三、wait和waitpid1.wait函数2.waitpid函数一、exec函数族 exec函数使用时&#xff0c;改程序的用户空间的代码和数据会被新程序给替代&#xff0c;会从新程序的启动例程开始。调用exe…

linux下c/c++实例之十socket简单应用

转自&#xff1a;http://blog.csdn.net/taiyang1987912/article/details/49738351 一、简介 通过socket扫描本机打开的tcp端口号&#xff0c;模拟用户名、密码登录服务器的过程、socket文件传输及模仿http服务器。 二、详解 1、Linux下tcp端口扫描 &#xff08;1&#xff09;…

Linux系统编程(三)进程间的通信

Linux系统编程&#xff08;三&#xff09;进程间的通信一、为什么需要进程之间的通信&#xff08;IPC&#xff09;&#xff1f;二、管道1.概念2.特质3.原理4.局限性5.代码2.读入数据三、共享存储映射注意事项父子进程通信一、为什么需要进程之间的通信&#xff08;IPC&#xff…

使用mmap实现大文件的复制:单进程与多进程情况

单线程和多进程实现文件的复制&#xff08;mmap方法&#xff09; mmap实现大文件的复制单线程和多进程实现文件的复制&#xff08;mmap方法&#xff09;一、单线程实现二、多进程实现一般文件实现方法&#xff1a;1.读取&#xff08;fread&#xff09;要复制的文件2.写入&#…

exec 函数族

转自&#xff1a;http://www.cnblogs.com/mickole/p/3187409.html linux系统编程之进程&#xff08;五&#xff09;&#xff1a;exec系列函数&#xff08;execl,execlp,execle,execv,execvp)使用 本节目标&#xff1a; exec替换进程映像exec关联函数组&#xff08;execl、execl…

Linux系统编程(四)信号

Linux系统编程&#xff08;四&#xff09;信号一、什么是信号&#xff1f;1、信号的本质2、信号来源硬件来源软件来源二、常见信号1.可靠信号和不可靠信号2、不可靠信号主要有以下问题:3、可靠信号与不可靠信号注册机制三、信号处理方式四、信号处理过程五、未决信号和阻塞信号…

SIGCHLD信号回收子进程

SIGCHLD信号回收子进程代码问题注意点代码 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/wait.h> #include <signal.h>void handler(int signo) {int status; pid_t pid;while ((pid waitpid(0, &status…

Wait waitpid

转自&#xff1a;http://www.cnblogs.com/mickole/p/3187770.html linux系统编程之进程&#xff08;六&#xff09;&#xff1a;父进程查询子进程的退出,wait,waitpid 本节目标&#xff1a; 僵进程SIGCHLDwaitwaitpid 一&#xff0c;僵尸进程 当一个子进程先于父进程结束运行时…

Linux系统编程(五)时序竞态

时序竞态产生原因改进总结产生原因 #include <cstdio> #include <stdio.h> #include <sys/time.h> #include <unistd.h> #include <signal.h> #include <stdlib.h> #include <errno.h>void catch_sigalrm(int signo) {printf("…

Linux C++ 简单爬虫

转载&#xff1a;http://blog.csdn.net/orthocenterchocolate/article/details/38665937 方便易用&#xff0c;传入URL&#xff0c;返回对应页面的内容 [cpp] view plaincopy #include <iostream> #include <string> #include <netdb.h> #include <…

Linux系统编程(六)守护进程

Linux系统编程&#xff08;六&#xff09;守护进程一、进程组概念二、会话创建会话的条件守护进程概念守护进程模型创建守护进程一、进程组 概念 进程组&#xff0c;也称之为作业。代表一个或多个进程的集合。每个进程都属于一个进程组。 当父进程&#xff0c;创建子进程的时…

TCP 客户端和服务器端

转自&#xff1a;http://blog.csdn.net/itcastcpp/article/details/39047265 前面几篇中实现的client每次运行只能从命令行读取一个字符串发给服务器&#xff0c;再从服务器收回来&#xff0c;现在我们把它改成交互式的&#xff0c;不断从终端接受用户输入并和server交互。 [cp…

利用多线程实现linux下C语言的聊天室程序:

转载&#xff1a;http://www.360doc.com/content/16/0421/11/478627_552531090.shtml 利用多线程实现linux下C语言的聊天室程序&#xff1a; 客户端代码&#xff1a; threadsend线程负责客户端消息的发送&#xff1b; threadrecv线程负责客户端接受服务器端的消息。 [html] v…

Linux系统编程(七)消息队列

Linux系统编程&#xff08;七&#xff09;消息队列一、什么是消息队列二、消息队列内部原理三、实现消息队列的收发1.发送消息队列2.接收消息队列四、消息队列与命名管道的比较一、什么是消息队列 消息队列提供了一种从一个进程向另一个进程发送一个数据块的方法。每个数据块都…

基于Linux的SOCKET编程之TCP半双工Client-Server聊天程序

转自&#xff1a;http://blog.csdn.net/apollon_krj/article/details/53398448#0-tsina-1-64987-397232819ff9a47a7b7e80a40613cfe1 所谓半双工通信&#xff0c;即通信双方都可以实现接发数据&#xff0c;但是有一个限制&#xff1a;只能一方发一方收&#xff0c;之后交换收发对…

Linux系统编程(八)线程

Linux系统编程&#xff08;八&#xff09;线程一、什么是线程&#xff1f;二、Linux内核线程实现原理线程共享资源线程非共享资源线程优缺点线程控制原语一、什么是线程&#xff1f; LWP&#xff1a;light weight process 轻量级的进程&#xff0c;本质仍是进程(在Linux环境下…