您好,登錄后才能下訂單哦!
我們?cè)谥皩W(xué)習(xí)了線性表和單鏈表的相關(guān)特性,本節(jié)博客我們就來(lái)看看它們的區(qū)別。首先提出一個(gè)問(wèn)題:如何判斷某個(gè)數(shù)據(jù)元素是否存在于線性表中?那肯定是直接遍歷一遍了,我們來(lái)看看代碼
#include <iostream> #include "LinkList.h" using namespace std; using namespace DTLib; int main() { LinkList<int> list; for(int i=0; i<5; i++) { list.insert(0, i); } for(int i=0; i<list.length(); i++) { if( list.get(i) == 3 ) { cout << list.get(i) << endl; } } return 0; }
我們判斷 3 是都存在于當(dāng)前線性表中,如果存在,便輸出??纯摧敵鼋Y(jié)果
我們看到在查找的時(shí)候還得去手動(dòng)遍歷一遍,感覺(jué)很麻煩。那么我們?cè)谥暗膶?shí)現(xiàn)中,少了一個(gè)操作,那便是查找操作 find。它可以為線性表(List)增加一個(gè)查找操作,原型為 int find(const T& e) const; 參數(shù)為帶查找的數(shù)據(jù)元素;返回值:>=0 時(shí),則表示數(shù)據(jù)元素在線性表中第一次出現(xiàn)的位置;為 -1 時(shí),則表示數(shù)據(jù)元素不存在。下面我們看看數(shù)據(jù)元素查找的示例代碼,如下
LinkList<int> list; for(int i=0; i<5; i++) { list.insert(0, i); } cout << list.find(3) << endl; // ==> 1
下來(lái)我們?cè)?List.h 源碼中添加 find 操作,如下
List.h 源碼
#ifndef LIST_H #define LIST_H #include "Object.h" namespace DTLib { template < typename T > class List : public Object { protected: List(const List&); List& operator= (const List&); public: List() {} virtual bool insert(const T& e) = 0; virtual bool insert(int i, const T& e) = 0; virtual bool remove(int i) = 0; virtual bool set(int i, const T& e) = 0; virtual bool get(int i, T& e) const = 0; virtual int find(const T& e) const = 0; virtual int length() const = 0; virtual void clear() = 0; };
SeqList.h 源碼
#ifndef SEQLIST_H #define SEQLIST_H #include "List.h" #include "Exception.h" namespace DTLib { template < typename T > class SeqList : public List<T> { protected: T* m_array; int m_length; public: bool insert(int i, const T& e) { bool ret = ((0 <= i) && (i <= m_length)); ret = ret && (m_length < capacity()); if( ret ) { for(int p=m_length-1; p>=i; p--) { m_array[p+1] = m_array[p]; } m_array[i] = e; m_length++; } return ret; } bool insert(const T& e) { return insert(m_length, e); } bool remove(int i) { bool ret = ((0 <= i) && (i < m_length)); if( ret ) { for(int p=i; p<m_length-1; p++) { m_array[p] = m_array[p+1]; } m_length--; } return ret; } bool set(int i, const T& e) { bool ret = ((0 <= i) && (i < m_length)); if( ret ) { m_array[i] = e; } return ret; } bool get(int i, T& e) const { bool ret = ((0 <= i) && (i < m_length)); if( ret ) { e = m_array[i]; } return ret; } int find(const T& e) const // O(n) { bool ret = -1; for(int i=0; i<m_length; i++) { if( m_array[i] == e ) { ret = i; break; } } return ret; } int length() const { return m_length; } void clear() { m_length = 0; } T& operator[] (int i) { if( (0 <= i) && (i < m_length) ) { return m_array[i]; } else { THROW_EXCEPTION(IndexOutOfBoundsException, "Parameter i is invalid ..."); } } T operator[] (int i) const { return (const_cast<SeqList<T>&>(*this))[i]; } virtual int capacity() const = 0; }; } #endif // SEQLIST_H
LinkList.h 源碼
#ifndef LINKLIST_H #define LINKLIST_H #include "List.h" #include "Exception.h" namespace DTLib { template < typename T > class LinkList : public List<T> { protected: struct Node : public Object { T value; Node* next; }; mutable struct : public Object { char reserved[sizeof(T)]; Node* next; } m_header; int m_length; Node* position(int i) const { Node* ret = reinterpret_cast<Node*>(&m_header); for(int p=0; p<i; p++) { ret = ret->next; } return ret; } public: LinkList() { m_header.next = NULL; m_length = 0; } bool insert(const T& e) { return insert(m_length, e); } bool insert(int i, const T& e) { bool ret = ((0 <= i) && (i <= m_length)); if( ret ) { Node* node = new Node(); if( node != NULL ) { Node* current = position(i); node->value = e; node->next = current->next; current->next = node; m_length++; } else { THROW_EXCEPTION(NoEnoughMemoryException, "No memory to insert new element ..."); } } } bool remove(int i) { bool ret = ((0 <= i) && (i < m_length)); if( ret ) { Node* current = position(i); Node* toDel = current->next; current->next = toDel->next; delete toDel; m_length--; } return ret; } bool set(int i, const T& e) { bool ret = ((0 <= i) && (i < m_length)); if( ret ) { position(i)->next->value = e; } return ret; } T get(int i) const { T ret; if( get(i, ret) ) { return ret; } else { THROW_EXCEPTION(IndexOutOfBoundsException, "Invaild parameter i to get element ..."); } } bool get(int i, T& e) const { bool ret = ((0 <= i) && (i < m_length)); if( ret ) { e = position(i)->next->value; } return ret; } int find(const T& e) const { int ret = -1; int i = 0; Node* node = m_header.next; while( node ) { if( node->value == e ) { ret = i; break; } else { node = node->next; i++; } } return ret; } int length() const { return m_length; } void clear() { while( m_header.next ) { Node* toDel = m_header.next; m_header.next = toDel->next; delete toDel; } m_length = 0; } ~LinkList() { clear(); } }; } #endif // LINKLIST_H
那么此時(shí)的 main.cpp 就可以寫成這樣的了
#include <iostream> #include "LinkList.h" using namespace std; using namespace DTLib; int main() { LinkList<int> list; for(int i=0; i<5; i++) { list.insert(0, i); } cout << list.find(3) << endl; return 0; }
我們來(lái)看看結(jié)果
我們來(lái)查找下 -3 呢
我們看到如果查找的元素在里面,則返回 1;如果沒(méi)有,則返回 -1。那么我們?nèi)绻檎业氖穷惸??那程序還會(huì)編譯通過(guò)嗎?我們來(lái)看看,main.cpp 源碼如下
#include <iostream> #include "LinkList.h" using namespace std; using namespace DTLib; class Test { int i; public: Test(int v = 0) { i = v; } }; int main() { Test t1(1); Test t2(3); Test t3(3); LinkList<Test> list; return 0; }
編譯結(jié)果如下
編譯報(bào)錯(cuò)了,我們并沒(méi)有改動(dòng) LinkList 中的代碼,為什么這塊會(huì)報(bào)錯(cuò)呢?那么此時(shí)我們想要讓兩個(gè)類對(duì)象進(jìn)行相等的比較,可是我們并沒(méi)有定義 == 操作符,此時(shí)肯定會(huì)出錯(cuò)。那么我們?cè)陬?Test 中進(jìn)行 == 操作符的定義,如下
class Test { int i; public: Test(int v = 0) { i = v; } bool operator == (const Test& obj) { return true; } };
我們?cè)賮?lái)編譯下,看看結(jié)果
編譯是通過(guò)的,那么我們此時(shí)便覺(jué)得奇怪了。我們?yōu)槭裁匆?Test 類中定義 == 操作符呢,此時(shí)最好的解決辦法是在頂層父類 Object 中添加 == 和 != 操作符,然后將 Test 類繼承自 Object 類就可以了。
Object.h 源碼
#ifndef OBJECT_H #define OBJECT_H namespace DTLib { class Object { public: void* operator new (unsigned int size) throw(); void operator delete (void* p); void* operator new[] (unsigned int size) throw(); void operator delete[] (void* p); bool operator == (const Object& obj); bool operator != (const Object& obj); virtual ~Object() = 0; }; } #endif // OBJECT_H
Object.cpp 源碼
#include "Object.h" #include <cstdlib> namespace DTLib { void* Object::operator new (unsigned int size) throw() { return malloc(size); } void Object::operator delete (void* p) { free(p); } void* Object::operator new[] (unsigned int size) throw() { return malloc(sizeof(size)); } void Object::operator delete[] (void* p) { free(p); } bool Object::operator == (const Object& obj) { return (this == &obj); } bool Object::operator != (const Object& obj) { return (this != &obj); } Object::~Object() { } }
此時(shí)的 main.cpp 代碼如下
#include <iostream> #include "LinkList.h" using namespace std; using namespace DTLib; class Test : public Object { int i; public: Test(int v = 0) { i = v; } bool operator == (const Test& obj) { return (i == obj.i); } }; int main() { Test t1(1); Test t2(3); Test t3(3); LinkList<Test> list; list.insert(t1); list.insert(t2); list.insert(t3); cout << list.find(t2) << endl; return 0; }
我們來(lái)看看編譯輸出結(jié)果
那么我們?cè)?main.cpp 測(cè)試代碼中將 t1, t2, t3 對(duì)象插入到 list 中,然后查找 t2 是否存在,那么它肯定是存在的,因此會(huì)輸出 1。那么我們來(lái)分析下順序表和單鏈表的時(shí)間復(fù)雜度的對(duì)比,如下
我們看到順序表只有三個(gè) O(n) ,而單鏈表幾乎是全部是 O(n)。從時(shí)間復(fù)雜度上來(lái)看,似乎順序表更占優(yōu)勢(shì),那么我們?cè)谄綍r(shí)的開發(fā)中,為什么經(jīng)常見到的是單鏈表而不是順序表呢?在實(shí)際的工程開發(fā)中,時(shí)間復(fù)雜度只是一個(gè)參考指標(biāo),對(duì)于內(nèi)置基礎(chǔ)類型,順序表和單鏈表的效率不相上下,而對(duì)于自定義類型來(lái)說(shuō),順序表在效率上低于單鏈表。在插入和刪除操作中,順序表涉及大量數(shù)據(jù)對(duì)象的復(fù)制操作,而單鏈表只涉及指針操作,效率與數(shù)據(jù)對(duì)象無(wú)關(guān)。對(duì)于數(shù)據(jù)訪問(wèn),順序表是隨機(jī)訪問(wèn),可直接定位數(shù)據(jù)對(duì)象;而對(duì)于單鏈表來(lái)說(shuō)是順序訪問(wèn),必須從頭訪問(wèn)數(shù)據(jù)對(duì)象,無(wú)法直接定位。
一般在工程開發(fā)中,順序表主要用于:數(shù)據(jù)元素類型相對(duì)簡(jiǎn)單,不涉及深拷貝;數(shù)據(jù)元素相對(duì)穩(wěn)定,訪問(wèn)操作遠(yuǎn)多于插入和刪除操作。單鏈表主要用于:數(shù)據(jù)元素的類型相對(duì)復(fù)雜,復(fù)制操作相對(duì)耗時(shí);數(shù)據(jù)元素不穩(wěn)定,需要經(jīng)常插入和刪除,訪問(wèn)操作較少的情況。通過(guò)今天的學(xué)習(xí),總結(jié)如下:1、線性表中元素的查找依賴于相等比較操作符(==);2、順序表適用于訪問(wèn)需求量較大的場(chǎng)合(隨機(jī)訪問(wèn));3、單鏈表適用于數(shù)據(jù)元素頻繁插入刪除的場(chǎng)合(順序訪問(wèn));4、當(dāng)數(shù)據(jù)類型相對(duì)簡(jiǎn)單時(shí),順序表和單鏈表的效率不相上下。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。