考研資料結構複習之線性表
線性表之順序表學習
#pragma once
#define MaxListSize 100
typedef int DataType;
class SeqListTest
{
public:
SeqListTest();
~SeqListTest();
};
typedef struct
{
DataType list[MaxListSize];
int length;
}SeqList;
void InitList(SeqList *L);
bool ListEmpty(SeqList L);
int GetElemByNum(SeqList L, int i, DataType *e);
int GetLocateElem(SeqList L, DataType e);
int InsertList(SeqList *L, int i, DataType e);
int DeleteList(SeqList *L, int i, DataType *e);
int ListLength(SeqList L);
void ClearList(SeqList *L);
void PrintList(SeqList *L);
#include "SeqListTest.h"
#include<iostream>
using namespace std;
SeqListTest::SeqListTest()
{
}
SeqListTest::~SeqListTest()
{
}
/*線性表初始化正確方法*/
void InitList(SeqList * L)
{
L->length = 0;
}
/*線性表初始化錯誤方法
void InitList(SeqList L)
{
L.length = 0;
}*/
/*這裡的錯誤是因為初始化的時候需要注意到L的本身需要改變,可以使用指標,或者是引用型別.引用型別的程式碼如下:
void InitList(SeqList &L)
{
L.length = 0;
}
只需記住:不需要修改表L本身的時候就可以不用指標或者引用型別,
像查詢是否為空,只是得到資料(順序表的長度),而不是修改就可以直接使用例如bool ListEmpty(SeqList L)的傳參形式。
這是其實也是引數的傳遞的按照值傳遞和引用傳遞的區別。
不清楚的可以回去看一下教材。
再補充一點:
void InitList(SeqList &L)
{
L.length = 0;
}初始化的時候----使用時:
SeqList L;
InitList(L);
void InitList(SeqList * L)
{
L->length = 0;
}初始化的時候----使用時:
SeqList L;
InitList(&L);
*/
bool ListEmpty(SeqList L)
{
if (L.length==0)
{
return true;
}
return false;
}
/*按照序號來查詢元素*/
int GetElemByNum(SeqList L, int i, DataType * e)
{
if (ListEmpty(L))
{
return -1;
}
else if (i<1&&i>L.length)
{
return -1;
}
else
{
*e = L.list[i - 1];
return 1;
}
}
/*查詢線性表中元素所在的位置*/
int GetLocateElem(SeqList L, DataType e)
{
for (int i = 0; i <L.length; i++)
{
if (L.list[i]==e)
{
return i + 1;
}
}
return -1;
}
/*往線性表中插入資料(1)判斷線性表是否滿,插入位置是否合理,
可插入的位置注意到第一個和最後一個*/
int InsertList(SeqList * L, int i, DataType e)
{
int j;
if (L->length==MaxListSize)
{
return -1;
}
/*插入位置不合法*/
else if(i<1&&i>L->length+1)
{
return -1;
}
else
{
for ( j = L->length; j >i; j--)
{
L->list[j ] = L->list[j-1];
}
L->list[i-1] = e;
L->length = L->length + 1;
return 1;
}
}
/*刪除線性表中的元素並且將刪除的元素的值賦給e
(1)先判斷線性表是否為空
(2)刪除位置是否合法*/
int DeleteList(SeqList * L, int i, DataType * e)
{
int j;
if (ListEmpty(*L))
{
return -1;
}
else if (i<1&&i>L->length)
{
return -1;
}
else
{
*e=L->list[i - 1];
for ( j= i; j< L->length; j++)
{
L->list[j - 1] = L->list[j];
}
L->length = L->length - 1;
return -1;
}
}
int ListLength(SeqList L)
{
return L.length;
}
void ClearList(SeqList * L)
{
L->length = 0;
}
void PrintList(SeqList * L)
{
for (int i = 0; i < L->length; i++)
{
cout << L->list[i] << " ";
}
cout << endl;
}
測試main:
int main() {
SeqList L;
InitList(&L);
InsertList(&L, 1, 1);
InsertList(&L, 2, 2);
InsertList(&L, 3, 3);
InsertList(&L, 4, 4);
InsertList(&L, 5, 5);
PrintList(&L);
cout << ListLength(L) << endl;
DataType e;
DeleteList(&L, 1, &e);
cout << e << endl;
PrintList(&L);
cout << GetLocateElem(L, 3) << endl;
GetElemByNum (L,2,&e);
cout << e << endl;
cout << ListLength(L) << endl;
system("PAUSE");
return 0;
}
相關文章
- 考研資料結構-線性表-順序表資料結構
- 資料結構基礎學習之線性表資料結構
- 【資料結構之線性表總結】資料結構
- [資料結構] - 線性表資料結構
- 資料結構 | 線性表資料結構
- 資料結構——線性表資料結構
- 資料結構-線性表資料結構
- 資料結構—線性表資料結構
- 資料結構 - 線性表 - 順序表資料結構
- Java學習筆記:資料結構之線性表(雙向連結串列)Java筆記資料結構
- 資料結構-線性表、連結串列資料結構
- 線性表__資料結構筆記資料結構筆記
- 資料結構:線性表-例題資料結構
- 資料結構:特殊的線性表之 棧 & 佇列資料結構佇列
- 【資料結構】線性表-單連結串列資料結構
- Java實現資料結構之線性結構Java資料結構
- 資料結構筆記——線性表(中)資料結構筆記
- 資料結構筆記——線性表(下)資料結構筆記
- 線性結構-線性表
- 資料結構實驗之查詢七:線性之雜湊表資料結構
- 資料結構與演算法之線性結構資料結構演算法
- Java資料結構之線性表-Java那些事兒專欄Java資料結構
- 資料結構與演算法 - 線性表資料結構演算法
- 資料結構——線性表P35.1資料結構
- 資料結構線性表兩種方式分享資料結構
- 資料結構複習一:雜湊表的總結資料結構
- 資料結構與演算法(三) -- 線性表之雙向連結串列資料結構演算法
- 資料結構與演算法(一):線性表資料結構演算法
- 資料結構-第一篇:線性表資料結構
- 【資料結構&演算法】04-線性表資料結構演算法
- 演算法與資料結構(1)--線性表演算法資料結構
- 資料結構與演算法 | 線性表 —— 順序表資料結構演算法
- 線性表之順序儲存結構
- 線性表之鏈式儲存結構
- 資料結構與演算法 | 線性表 —— 連結串列資料結構演算法
- 自學 資料結構四月二十二日_線性結構之順序表資料結構
- 資料結構:線性表(Python實現基本操作)資料結構Python
- 資料結構:線性表的順序實現2.2資料結構