[C++基础]队列<queue>中的常用函数
在C++中只要#include
1. push
2. pop
3. size
4. empty
5. front
6. back
接下来逐一举例说明:
1. push
队列中由于是先进先出,push即在队尾插入一个元素,如:
1 queue<string> q; 2 q.push("Hello World!"); 3 q.push("China"); 4 cout<可以输出:Hello World!
2. pop
将队列中最靠前位置的元素拿掉,是没有返回值的void函数。如:
1 queue<string> q; 2 q.push("Hello World!"); 3 q.push("China"); 4 q.pop(); 5 cout<可以输出:China
原因是Hello World!已经被除掉了。
3. size
返回队列中元素的个数,返回值类型为unsigned int。如:
queue<string> q; cout<endl; q.push("Hello World!"); q.push("China"); cout< 输出两行,分别为0和2,即队列中元素的个数。
4. empty
判断队列是否为空的,如果为空则返回true。如:
1 queue<string> q; 2 cout<endl; 3 q.push("Hello World!"); 4 q.push("China"); 5 cout< 输出为两行,分别是1和0。因为一开始队列是空的,后来插入了两个元素。
5. front
返回值为队列中的第一个元素,也就是最早、最先进入队列的元素。注意这里只是返回最早进入的元素,并没有把它剔除出队列。如:
1 queue<string> q; 2 q.push("Hello World!"); 3 q.push("China"); 4 cout<endl; 5 q.pop(); 6 cout< 输出值为两行,分别是Hello World!和China。只有在使用了pop以后,队列中的最早进入元素才会被剔除。
6. back
返回队列中最后一个元素,也就是最晚进去的元素。如:
1 queue<string> q; 2 q.push("Hello World!"); 3 q.push("China"); 4 cout<输出值为China,因为它是最后进去的。这里back仅仅是返回最后一个元素,也并没有将该元素从队列剔除掉。
其他的方法不是很常用,就不再研究了。
接下来我们使用链表,自己将queue类写出来,将其所有方法都实现。代码都是自己写的,最后随便写了点main函数小测一下,没有发现问题,如果有不足还望能指正。如下:
1 #include队列实现2 #include<string> 3 using namespace std; 4 5 template 6 struct Node{ 7 T value; 8 Node *next; 9 Node (){next = NULL;} 10 }; 11 12 template 13 class MyQueue{ 14 private: 15 unsigned int num; 16 Node *first; 17 Node *last; 18 19 public: 20 MyQueue(); 21 ~MyQueue(); 22 unsigned int size(); 23 void push(T element); 24 void pop(); 25 bool empty(); 26 T back(); 27 T front(); 28 }; 29 30 template 31 MyQueue ::MyQueue(){ 32 num = 0; 33 first = NULL; 34 last = NULL; 35 } 36 37 template 38 MyQueue ::~MyQueue(){ 39 while(!empty()){ 40 pop(); 41 } 42 } 43 44 template 45 unsigned int MyQueue ::size(){ 46 return num; 47 } 48 49 template 50 bool MyQueue ::empty(){ 51 return (0==num); 52 } 53 54 template 55 void MyQueue ::push(T element){ 56 Node *temp = new Node ; 57 temp->next = NULL; 58 temp->value = element; 59 if (0 == this->num){ 60 first = temp; 61 last = temp; 62 }else{ 63 last->next = temp; 64 last = temp; 65 } 66 (this->num)++; 67 } 68 69 template 70 void MyQueue ::pop(){ 71 if (0==this->num){ 72 cout<<"No elements in the queue!"<<endl; 73 }else if(1 == this->num){ 74 delete first; 75 first = NULL; 76 last = NULL; 77 this->num = 0; 78 }else{ 79 Node *temp = first; 80 first = first->next; 81 delete temp; 82 (this->num)--; 83 } 84 } 85 86 template 87 T MyQueue ::back(){ 88 if (0==this->num){ 89 cout<<"No elements in the queue!"<<endl; 90 return NULL; 91 } 92 return last->value; 93 } 94 95 template 96 T MyQueue ::front(){ 97 if(0== this->num){ 98 cout<<"No elements in the queue!"<<endl; 99 return NULL; 100 } 101 return first->value; 102 } 103 104 105 int main(){ 106 MyQueue<string> q; 107 q.push("Hello world"); 108 q.push("China"); 109 cout< endl; 110 cout< endl; 111 cout< endl; 112 q.pop(); 113 cout< endl; 114 cout< endl; 115 cout< endl; 116 q.pop(); 117 cout< endl; 118 cout< endl; 119 system("pause"); 120 return 0; 121 }