首页 > 编程 > C++ > 正文

C++队列用法实例

2020-05-23 14:18:31
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C++队列用法,实例分析了C++实现队列的入队、出队、读取与判断等相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了C++队列用法。分享给大家供大家参考。具体如下:

 

 
  1. /* 
  2. 队列使用时必须包含头文件 #include <queue> 有以下几种方法 
  3. 入队push(),出队pop(), 读取队首元素front(),读取队尾元素back() , 
  4. 判断队是否有元素empty() 
  5. 求队列元素个数size()  
  6. */ 
  7. #include <iostream> 
  8. #include <queue> 
  9. using namespace std; 
  10. int main() 
  11. queue<int> one; 
  12. one.push(1); 
  13. one.push(2); 
  14. one.push(3); 
  15. cout<<"one 队列长度:"<<one.size()<<endl; 
  16. cout<<"队尾元素是:"<<one.back()<<endl; 
  17. cout<<"队头元素是:"<<one.front()<<endl;  
  18. cout<<"队列是否为空(1为空,0为非空):"<<one.empty()<<endl; 
  19. one.pop(); //删除是从队头元素开始的  
  20. cout<<one.front()<<endl; 
  21. cout<<one.size()<<endl; 
  22. //cout<<one.top()<<endl; //普通队列好像没有次方法  
  23. //优先队列的使用 优先队列中使用back、front 出现错误  
  24. priority_queue<int> three; 
  25. three.push(10); 
  26. three.push(20); 
  27. three.push(30); 
  28. cout<<"three 优先队列长度:"<<three.size()<<endl;  
  29. cout<<"队列是否为空(1为空,0为非空):"<<three.empty()<<endl; 
  30. while (false == three.empty()) 
  31. cout<<three.top()<<endl; 
  32. three.pop(); 
  33. cout<<endl; 
  34. system("pause"); 
  35. return 0;  

希望本文所述对大家的C++程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表