C++順序表的實(shí)例代碼
本文實(shí)例為大家分享了C++實(shí)現(xiàn)順序表的具體代碼,供大家參考,具體內(nèi)容如下
#include <iostream>
using namespace std;
typedef int DataType;
class SeqList
{
public:
SeqList()
:_a(NULL)
, _size(0)
, _capacity(0)
{}
SeqList(const SeqList& s)
:_a(new DataType[s._size])
, _size(s._size)
, _capacity(s._capacity)
{
memcpy(_a, s._a, sizeof(DataType)*s._size);
}
SeqList& operator=(const SeqList& s)
{
if (this != &s)
{
DataType* tmp = new DataType[s._size];
delete[] _a;
_a = tmp;
memcpy(_a, s._a, sizeof(DataType)*s._size);
_size = s._size;
_capacity = s._capacity;
}
return *this;
}
//SeqList& operator=(SeqList s) //若傳引用會(huì)改變引用對象的值
//{
// swap(_a, s._a);
// swap(_size, s._size);
// swap(_capacity, s._capacity);
// return *this;
//}
~SeqList()
{
if (_a)
{
delete[] _a;
}
}
void PushBack(DataType d)
{
CheckCapacity();
_a[_size] = d;
_size++;
}
void PopBack()
{
if (_size > 0)
{
_size--;
}
else
{
cout << "順序表為空" << endl;
}
}
void PushFront(DataType d)
{
CheckCapacity();
int i = (int)_size;
for (; i > 0; i--)
{
_a[i] = _a[i - 1];
}
_a[0] = d;
++_size;
}
void PopFront()
{
if (_size > 0)
{
int i = 0;
for (; i < (int)_size; i++)
{
_a[i] = _a[i + 1];
}
_size--;
}
else
{
cout << "順序表為空" << endl;
}
}
void Print()
{
if (_size > 0)
{
int i = 0;
for (; i < (int)_size; i++)
{
cout << _a[i] << " ";
}
cout << endl;
}
else
{
cout << "順序表為空" << endl;
}
}
void Insert(size_t pos, DataType d) //在pos之前插入一個(gè)數(shù)據(jù)
{
CheckCapacity();
if (_size > 0)
{
if (pos <= 0 || pos > _size)
{
cout << "pos位置非法" << endl;
}
else
{
int i = 0;
for (i = (int)_size + 1; i > pos - 1; i--)
{
_a[i] = _a[i - 1];
}
_a[pos - 1] = d;
_size++;
}
}
else
{
PushFront(d);
}
}
void Erase(size_t pos) //刪除pos位置的數(shù)據(jù)
{
if (_size > 0)
{
if (pos <= 0 || pos > _size)
{
cout << "pos位置非法" << endl;
}
else
{
int i = pos - 1;
for (; i < (int)_size; i++)
{
_a[i] = _a[i + 1];
}
_size--;
}
}
else
{
cout << "順序表為空,無法進(jìn)行刪除" << endl;
}
}
int Find(DataType d)
{
int i = 0;
for (; i < (int)_size; i++)
{
if (_a[i] == d)
{
return i + 1;
}
}
return 0;
}
private:
void CheckCapacity()
{
if (_size == _capacity)
{
_capacity = _capacity * 2 + 3;
_a = (DataType*)realloc(_a, sizeof(DataType)*_capacity);
}
}
private:
DataType* _a;
size_t _size;
size_t _capacity;
};
以下為測試函數(shù)
#include "SeqList.h";
void Test1()
{
SeqList s1;
s1.PushBack(1);
s1.PushBack(2);
s1.PushBack(3);
s1.PushBack(4);
s1.Print();
SeqList s2(s1);
s2.Print();
s2.PopBack();
s2.PopBack();
s2.PopBack();
s2.PopBack();
s2.PopBack();
s2.Print();
s2.PushFront(4);
s2.PushFront(3);
s2.PushFront(2);
s2.PushFront(1);
s2.Print();
s2.PopFront();
s2.Print();
s2.PopFront();
s2.PopFront();
s2.PopFront();
s2.PopFront();
s2.PopFront();
SeqList s3;
s3 = s1;
s3.Print();
}
void Test2()
{
SeqList s1;
s1.PushBack(1);
s1.PushBack(2);
s1.PushBack(3);
s1.PushBack(4);
s1.Print();
//s1.Insert(1, 0);
//s1.Print();
/*s1.Erase(1);
s1.Erase(1);
s1.Erase(1);
s1.Erase(1);
s1.Print();*/
int i = s1.Find(5);
cout << i << endl;
}
int main()
{
//Test1();
Test2();
system("pause");
return 0;
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
上一篇:c語言實(shí)現(xiàn)基數(shù)排序解析及代碼示例
欄 目:C語言
下一篇:利用C語言實(shí)現(xiàn)“百馬百擔(dān)”問題方法示例
本文標(biāo)題:C++順序表的實(shí)例代碼
本文地址:http://www.jygsgssxh.com/a1/Cyuyan/1017.html
您可能感興趣的文章
- 04-02c語言的正則匹配函數(shù) c語言正則表達(dá)式函數(shù)庫
- 04-02c語言中對數(shù)函數(shù)的表達(dá)式 c語言中對數(shù)怎么表達(dá)
- 04-02c語言用函數(shù)寫分段 用c語言表示分段函數(shù)
- 04-02c語言沒有round函數(shù) round c語言
- 01-10數(shù)據(jù)結(jié)構(gòu)課程設(shè)計(jì)-用棧實(shí)現(xiàn)表達(dá)式求值的方法詳解
- 01-10深入理解C++中常見的關(guān)鍵字含義
- 01-10使用C++實(shí)現(xiàn)全排列算法的方法詳解
- 01-10c++中inline的用法分析
- 01-10深入理解鏈表的各類操作詳解
- 01-10用C++實(shí)現(xiàn)DBSCAN聚類算法


閱讀排行
本欄相關(guān)
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言的正則匹配函數(shù) c語言正則表達(dá)
- 04-02c語言用函數(shù)寫分段 用c語言表示分段
- 04-02c語言中對數(shù)函數(shù)的表達(dá)式 c語言中對
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段
- 04-02C語言中怎么打出三角函數(shù) c語言中怎
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求
隨機(jī)閱讀
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 08-05織夢dedecms什么時(shí)候用欄目交叉功能?
- 04-02jquery與jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-11ajax實(shí)現(xiàn)頁面的局部加載
- 08-05DEDE織夢data目錄下的sessions文件夾有什


