두 개의 단일 체인 테이블 (헤드 노드와 헤드 노드가 없는 것) 의 창설 및 기본 조작 (삭제, 수정)
2067 단어 데이터 구조와 알고리즘
헤드 노드 사용:
#include "pch.h"
#include "pch.h"
#include "SingleList.h"
#include
using namespace std;
int main(void)
{
SingleList list;
list.create(10);
list.print();
cout << " !" << endl;
list.Delete(2);
list.print();
cout << " !" << endl;
list.insert(2, 100);
list.print();
cout << " !" << endl;
cout << "find:" << list.find(3) << endl;
cout << " !" << endl;
return 0;
}
typedef
struct Node {
int data;
struct Node * next;
}Node;
class SingleList
{
Node head;//Node * head , , head ,
int length;
public:
SingleList();
void create(int len);
void insert(int index,int data);
void Delete(int index);
int find(int index);
int size();
void print();
~SingleList();
};
#include "pch.h"
#include "SingleList.h"
SingleList::SingleList()
{
head.next = NULL;
head.data = 0;
length = 0;
}
void SingleList::create(int len)
{
for (int i = 0; i < len; i++)
{
insert(i, i);
}
}
void SingleList::insert(int index,int data)
{
Node * p_head = &head;
while (index --)
{
p_head = p_head->next;
}
Node * nodeTemp = new Node;
nodeTemp->data = data;
nodeTemp->next = p_head->next;
p_head->next = nodeTemp;
length++;
}
void SingleList::Delete(int index)
{
Node * p_head = &head;
index++;
while (index --)
{
p_head = p_head->next;
}
Node * tmpPtr = p_head->next;
p_head->next = p_head->next->next;
delete tmpPtr;
length--;
}
int SingleList::find(int index)
{
if (index < 0 || index > length) {
return 0;
}
Node * tmpPtr = head.next;
while (index --)
{
tmpPtr = tmpPtr->next;
}
return tmpPtr->data;
}
int SingleList::size()
{
return length;
}
void SingleList::print()
{
Node * p_head = head.next;
while (p_head->next != NULL)
{
cout << p_head->data << " ";
p_head = p_head->next;
}
}
SingleList::~SingleList()
{
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
두 갈래 나무의 깊이가 두루 다니다텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.