mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 18:37:48 +08:00 
			
		
		
		
	 3f4220de81
			
		
	
	3f4220de81
	
	
	
		
			
			* 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.
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| =begin
 | |
| File: permutations_i.rb
 | |
| Created Time: 2024-05-22
 | |
| Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
 | |
| =end
 | |
| 
 | |
| ### 回溯演算法:全排列 I ###
 | |
| def backtrack(state, choices, selected, res)
 | |
|   # 當狀態長度等於元素數量時,記錄解
 | |
|   if state.length == choices.length
 | |
|     res << state.dup
 | |
|     return
 | |
|   end
 | |
| 
 | |
|   # 走訪所有選擇
 | |
|   choices.each_with_index do |choice, i|
 | |
|     # 剪枝:不允許重複選擇元素
 | |
|     unless selected[i]
 | |
|       # 嘗試:做出選擇,更新狀態
 | |
|       selected[i] = true
 | |
|       state << choice
 | |
|       # 進行下一輪選擇
 | |
|       backtrack(state, choices, selected, res)
 | |
|       # 回退:撤銷選擇,恢復到之前的狀態
 | |
|       selected[i] = false
 | |
|       state.pop
 | |
|     end
 | |
|   end
 | |
| end
 | |
| 
 | |
| ### 全排列 I ###
 | |
| def permutations_i(nums)
 | |
|   res = []
 | |
|   backtrack([], nums, Array.new(nums.length, false), res)
 | |
|   res
 | |
| end
 | |
| 
 | |
| ### Driver Code ###
 | |
| if __FILE__ == $0
 | |
|   nums = [1, 2, 3]
 | |
| 
 | |
|   res = permutations_i(nums)
 | |
| 
 | |
|   puts "輸入陣列 nums = #{nums}"
 | |
|   puts "所有排列 res = #{res}"
 | |
| end
 |