데이터 구조의 선형 표 (배열 실현)
7094 단어 데이터 구조 와 알고리즘
#ifndef LIST_H
#define LIST_H
class List{
public:
List(){}
List(int size);
~List();
void ClearList();
bool ListEmpty();
int ListLength();
bool GetElem(int i, int &e);
int LocateElem(int &e);
bool PriorElem(int ¤tElem, int &preElem);
bool NextElem(int ¤tElem, int &nextElem);
bool ListInsert(int i, int &e);
bool ListDelete(int i, int &e);
void ListTraverse();
private:
int *m_pList;
int m_iSize;
int m_iLength; //
};
#endif
#include"List.h"
#include
using namespace std;
List::List(int size){
m_iSize = size;
m_pList = new int[m_iSize];
m_iLength = 0;
}
List::~List(){
delete[]m_pList;
m_pList = NULL;
}
void List::ClearList(){
m_iLength = 0;
}
bool List::ListEmpty(){
if (0 == m_iLength)
return true;
return false;
}
int List::ListLength(){
return m_iLength;
}
bool List::GetElem(int i, int &e){
if (ListEmpty() || i < 0 || i >= m_iLength)
return false;
e = m_pList[i];
return true;
}
int List::LocateElem(int &e){
for (int i = 0; i < m_iLength; i++){
if (m_pList[i] == e){
return i;
}
}
return -1;
}
bool List::PriorElem(int ¤tElem, int &preElem){
int index = LocateElem(currentElem);
if (-1 == index || 0 == index)
return false;
preElem = m_pList[index - 1];
return true;
}
bool List::NextElem(int ¤tElem, int &nextElem){
int index = LocateElem(currentElem);
if (-1 == index || (m_iLength-1)== index)
return false;
nextElem = m_pList[index + 1];
return true;
}
bool List::ListInsert(int i, int &e){
if (i<0 || i>m_iLength)
return false;
if (m_iLength == m_iSize)//
return false;
m_iLength++;
for (int j = m_iLength - 1; j > i; j--)
m_pList[j] = m_pList[j - 1];
m_pList[i] = e;
return true;
}
bool List::ListDelete(int i, int &e){
if (i<0 || i>m_iLength)
return false;
if (ListEmpty())
return false;
e = m_pList[i];
for (int j = i; j < m_iLength-1; j++)
m_pList[j] = m_pList[j + 1];
m_iLength--;
return true;
}
void List::ListTraverse(){
for (int i = 0; i < m_iLength; i++)
cout << m_pList[i] << " ";
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JAVA] 배열 회전 출력요소 가 출력 을 시작 하 는 위치 에 주의 하 십시오. 모두 몇 라운드 의 수출 이 있 습 니까? n/2 + 1 매 라 운 드 는 상, 우, 하, 좌 로 나 뉜 다. 각 방향의 시작 위치 와 좌표 의 관 계 를 구...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.