mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 10:26:48 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| /*
 | |
|  * File: queue.rs
 | |
|  * Created Time: 2023-02-05
 | |
|  * Author: codingonion (coderonion@gmail.com), xBLACKICEx (xBLACKICEx@outlook.com)
 | |
|  */
 | |
| 
 | |
| use hello_algo_rust::include::print_util;
 | |
| 
 | |
| use std::collections::VecDeque;
 | |
| 
 | |
| /* Driver Code */
 | |
| pub fn main() {
 | |
|     // 初始化队列
 | |
|     let mut queue: VecDeque<i32> = VecDeque::new();
 | |
| 
 | |
|     // 元素入队
 | |
|     queue.push_back(1);
 | |
|     queue.push_back(3);
 | |
|     queue.push_back(2);
 | |
|     queue.push_back(5);
 | |
|     queue.push_back(4);
 | |
|     print!("队列 queue = ");
 | |
|     print_util::print_queue(&queue);
 | |
| 
 | |
|     // 访问队首元素
 | |
|     let peek = queue.front().unwrap();
 | |
|     println!("\n队首元素 peek = {peek}");
 | |
| 
 | |
|     // 元素出队
 | |
|     let pop = queue.pop_front().unwrap();
 | |
|     print!("出队元素 pop = {pop},出队后 queue = ");
 | |
|     print_util::print_queue(&queue);
 | |
| 
 | |
|     // 获取队列的长度
 | |
|     let size = queue.len();
 | |
|     print!("\n队列长度 size = {size}");
 | |
| 
 | |
|     // 判断队列是否为空
 | |
|     let is_empty = queue.is_empty();
 | |
|     print!("\n队列是否为空 = {is_empty}");
 | |
| }
 | 
