데이터 구조: 선두 결산 점 단일 체인 표를 바탕 으로 체인 대기 행렬 과 체인 스 택 (연구) 을 실현 합 니 다.
2974 단어 데이터 구조
#include
using namespace std;
class LinkedList {
private:
struct node {
int val;
node *next;
node(int x, node *next) {
this->val = x;
this->next = next;
}
};
node *head;
int size;
public:
LinkedList() {
head = new node(0, NULL);
size = 0;
}
int getSize() {return size;}
bool isEmpty() {return size == 0;}
//[0,size]
void insert(int index, int x) {
if (index<0 || index>size) {
cout << "the index is invalid!" << endl;
return;
}
node *p = head;
for (int i=0; inext;
node *q = new node(x, p->next);
p->next = q;
size ++;
}
void insertTail(int x) {
insert(size, x);
}
void insertHead(int x) {
insert(0, x);
}
//[0,size-1]
int del(int index) {
if (index<0 || index>=size) {
cout << "the index is invalid" << endl;
return -1;
}
if (isEmpty()) {
cout << "the LinkedList is null!" << endl;
return -1;
}
node *p = head;
for (int i=0; inext;
node *del = p->next;
p->next = del->next;
int res = del->val;
delete del;
size --;
return res;
}
int delFirst() {return del(0);}
int delLast() {return del(size-1);}
int get(int index) {
if (index<0 || index>size) {
cout << "the index is invalid!" << endl;
return -1;
}
if (isEmpty()) {
cout << "the LinkedList is null!" << endl;
return -1;
}
node *p = head->next;
for (int i=0; inext;
return p->val;
}
int getLast() {return get(size-1);}
int getFirst() {return get(0);}
void show() {
node *p = head->next;
while (p) {
cout << p->val << " ";
p = p->next;
}
cout << endl;
}
};
사슬 창고
#include "LinkedList.h"
class LinkedListStack {
private:
LinkedList list;
public:
stack() {
list = LinkedList();
}
bool isEmpty() {
return list.isEmpty();
}
void push(int x) {
list.insertHead(x);
}
int pop() {
return list.delFirst();
}
int top() {
return list.getFirst();
}
};
int main() {
int a[] = {1,2,3,4,5};
int n = sizeof(a)/sizeof(int);
LinkedListStack s;
for (int i=0; i
3. 체인 대기 행렬
#include "LinkedList.h"
class LinkedListQueue {
private:
LinkedList list;
public:
LinkedListQueue() {
list = LinkedList();
}
bool isEmpty() {return list.isEmpty();}
void push(int x) {
list.insertTail(x);
}
int front() {
return list.getFirst();
}
int pop() {
return list.delFirst();
}
};
int main() {
int a[] = {1,2,3,4,5};
int n = sizeof(a)/sizeof(int);
LinkedListQueue q;
for (int i=0; i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.