mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 18:37:48 +08:00 
			
		
		
		
	 c9041c5c5e
			
		
	
	c9041c5c5e
	
	
	
		
			
			* preorder, inorder, postorder -> pre-order, in-order, post-order * Bug fixes * Bug fixes * Update what_is_dsa.md * Sync zh and zh-hant versions * Sync zh and zh-hant versions. * Update performance_evaluation.md and time_complexity.md * Add @khoaxuantu to the landing page. * Sync zh and zh-hant versions * Add @ khoaxuantu to the landing page of zh-hant and en versions. * Sync zh and zh-hant versions. * Small improvements * @issue : #1450 (#1453) Fix writing "obsecure" to "obscure" Co-authored-by: Gaya <kheliligaya@gmail.com> * Update the definition of "adaptive sorting". * Update n_queens_problem.md * Sync zh, zh-hant, and en versions. --------- Co-authored-by: Gaya-Khelili <50716339+Gaya-Khelili@users.noreply.github.com> Co-authored-by: Gaya <kheliligaya@gmail.com>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| /*
 | |
|  * File: permutations_i.rs
 | |
|  * Created Time: 2023-07-15
 | |
|  * Author: codingonion (coderonion@gmail.com)
 | |
|  */
 | |
| 
 | |
| /* 回溯演算法:全排列 I */
 | |
| fn backtrack(mut state: Vec<i32>, choices: &[i32], selected: &mut [bool], res: &mut Vec<Vec<i32>>) {
 | |
|     // 當狀態長度等於元素數量時,記錄解
 | |
|     if state.len() == choices.len() {
 | |
|         res.push(state);
 | |
|         return;
 | |
|     }
 | |
|     // 走訪所有選擇
 | |
|     for i in 0..choices.len() {
 | |
|         let choice = choices[i];
 | |
|         // 剪枝:不允許重複選擇元素
 | |
|         if !selected[i] {
 | |
|             // 嘗試:做出選擇,更新狀態
 | |
|             selected[i] = true;
 | |
|             state.push(choice);
 | |
|             // 進行下一輪選擇
 | |
|             backtrack(state.clone(), choices, selected, res);
 | |
|             // 回退:撤銷選擇,恢復到之前的狀態
 | |
|             selected[i] = false;
 | |
|             state.pop();
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| /* 全排列 I */
 | |
| fn permutations_i(nums: &mut [i32]) -> Vec<Vec<i32>> {
 | |
|     let mut res = Vec::new(); // 狀態(子集)
 | |
|     backtrack(Vec::new(), nums, &mut vec![false; nums.len()], &mut res);
 | |
|     res
 | |
| }
 | |
| 
 | |
| /* Driver Code */
 | |
| pub fn main() {
 | |
|     let mut nums = [1, 2, 3];
 | |
| 
 | |
|     let res = permutations_i(&mut nums);
 | |
| 
 | |
|     println!("輸入陣列 nums = {:?}", &nums);
 | |
|     println!("所有排列 res = {:?}", &res);
 | |
| }
 |