时间:2021-05-19
本文主要给大家介绍了关于C++实现顺序表和单链表的相关内容,分享出来供大家参考学习,话不多说,来一起看看详细的介绍:
一、顺序表示例代码:
#include <assert.h>#include <iostream>using namespace std;typedef int Datatype;class SeqList{public: SeqList() :_array(NULL) ,_size(0) ,_capacity(0) { } SeqList(const SeqList& s) { _array = (Datatype*)malloc(s._size*(sizeof(Datatype))); memcpy(_array, s._array, s._size*(sizeof(Datatype))); _size = _capacity = s._size; } SeqList& operator=(SeqList& s) { free(_array); Swap(s); return *this; } void Swap(SeqList& s) { _array = s._array; _size = s._size; _capacity = s._capacity; } ~SeqList() { if (_array) { free(_array); _array = NULL; _size = _capacity = 0; } } void Print() { for (size_t i = 0; i < _size; i++) { cout << _array[i] << " "; } cout << endl; } void CheckCapcacity() { if (_size == _capacity) { _capacity = 2 * _capacity + 3; _array = (Datatype*)realloc(_array, _capacity*sizeof(Datatype)); assert(_array); } } //后插 void PushBack(Datatype x) { Insert(_size, x); } //前插 void PushFront(Datatype x) { Insert(0, x); } //删除最后一个 void PopBack() { Erase(_size); } //删除第一个 void PopFront() { Erase(0); } //[]运算符重载 Datatype& operator[](size_t pos) { assert(pos < _size); return _array[pos]; } //pos位置前插入x void Insert(size_t pos, Datatype x) { assert(pos <= _size); CheckCapcacity(); int end = (int)_size - 1; if (pos == 0) { while (end >= 0) { _array[end + 1] = _array[end]; end--; } _array[0] = x; } else { while (end >= (int)pos) { _array[end + 1] = _array[end]; end--; } _array[pos] = x; } _size++; } //删除pos位置的元素 void Erase(size_t pos) { assert(pos < _size); //popfront的实现 if (_size > 0) { if (pos == 0) { int end = 0; while (end < (int)_size - 1) { _array[end] = _array[end + 1]; end++; } _size--; } //popback的实现 else if (pos == _size) { _size--; } //erase else { int end = pos; while (end < (int)_size - 1) { _array[end] = _array[end + 1]; end++; } _size--; } } return; }private: Datatype* _array; size_t _size; size_t _capacity;};二、单链表(不含头结点)示例代码
#include <iostream>#include <assert.h>using namespace std;typedef int DataType;struct SListNode{ SListNode* _next; DataType _data; SListNode(DataType x) :_data(x) , _next(NULL) {}};typedef SListNode Node;class SList{public: SList() :_head(NULL) , _tail(NULL) {} SList(const SList& s) :_head(NULL) ,_tail(NULL) { Copy(s); } SList& operator=(const SList& s) { Destroy(); Copy(s); return *this; } ~SList() { Destroy(); } void Copy(const SList& s) { Node* cur = s._head; while (cur) { PushBack(cur->_data); cur = cur->_next; } } void Destroy() { Node* cur = _head; while (_head != NULL) { cur = _head; _head = cur->_next; delete cur; } _head = _tail = NULL; } void PushBack(DataType x) { if ((_head == NULL)&&(_tail == NULL)) { _head = _tail = new Node(x); } else { _tail->_next = new Node(x); _tail = _tail->_next; } } void PopBack() { if (_head == NULL) { return; } else if (_head ->_next == NULL) { delete _head; _head = _tail = NULL; } else { Node* tmp = _head; while (tmp->_next->_next != NULL) { tmp = tmp->_next; } _tail = tmp; tmp->_next = NULL; } } void PushFront(DataType x) { if ((_head == NULL) && (_tail == NULL)) { _head = _tail = new Node(x); } else { Node* tmp = new Node(x); tmp->_next = _head; _head = tmp; } } void PopFront() { if (_head == NULL) { return; } Node* cur = _head; _head = _head->_next; delete cur; } Node* Find(DataType x) { Node* tmp = _head; while (tmp) { if (tmp->_data == x) return tmp; tmp = tmp->_next; } return NULL; } // 插入一个节点在pos的前面 void Insert(Node* pos, DataType x) { assert(pos); if (pos == 0) { PushFront(x); } else { Node* cur = _head; while (cur->_next != pos) { cur = cur->_next; } Node* tmp = new Node(x); tmp->_next = pos; cur->_next = tmp; } } void Erase(Node* pos) { assert(pos); if (pos == 0) { PopFront(); } else if (pos->_next == NULL) { PopBack(); } else { Node* cur = _head; while (cur->_next != pos) { cur = cur->_next; } Node* tmp = cur->_next; cur->_next = tmp->_next; delete tmp; } } void Print() { Node* tmp = _head; while (tmp != NULL) { cout <<tmp->_data << "->"; tmp= tmp->_next; } cout <<"NULL"<<endl; }private: Node* _head; Node* _tail;};总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
C语言实现单链表实现方法链表和我们之前实现过的顺序表一样,都是简单的数据结构,链表分为单向链表、双向链表、循环链表。而单向链表又分为两种实现方法,一种为带头节点
本文实例讲述了C#实现单链表(线性表)的方法。分享给大家供大家参考,具体如下:顺序表由连续内存构成,链表则不同。顺序表的优势在于查找,链表的优势在于插入元素等操
本文实例为大家分享了C++数据结构之实现邻接表的具体代码,供大家参考,具体内容如下一、图的邻接表实现1.实现了以顶点顺序表、边链表为存储结构的邻接表;2.实现了
C++实现静态单链表的实例利用数组实现的静态单链表,与严蔚敏书实现略有不同,不另设回收空间。有任何BUG或错误,希望各位朋友多多反馈~~感激不尽/*Author
双向链表C++的实现本文是通过C++的知识实现数据结构中的双向链表,这里不多说了,代码注释很清楚,实现代码://doubleLinkListimplementw