mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-01 03:24:24 +08:00 
			
		
		
		
	 d484b08c15
			
		
	
	d484b08c15
	
	
	
		
			
			* Update bucket_sort.c * Fix the comments in quick_sort.c * Update the announce badge * Sync zh and zh-hant versions * Update contributors list. * Sync zh and zh-hant versions. * Sync zh and zh-hant versions. * Update the contributors list * Update the version number
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| =begin
 | |
| File: linear_search.rb
 | |
| Created Time: 2024-04-09
 | |
| Author: Blue Bean (lonnnnnnner@gmail.com)
 | |
| =end
 | |
| 
 | |
| require_relative '../utils/list_node'
 | |
| 
 | |
| ### 線性查詢(陣列) ###
 | |
| def linear_search_array(nums, target)
 | |
|   # 走訪陣列
 | |
|   for i in 0...nums.length
 | |
|     return i if nums[i] == target # 找到目標元素,返回其索引
 | |
|   end
 | |
| 
 | |
|   -1 # 未找到目標元素,返回 -1
 | |
| end
 | |
| 
 | |
| ### 線性查詢(鏈結串列) ###
 | |
| def linear_search_linkedlist(head, target)
 | |
|   # 走訪鏈結串列
 | |
|   while head
 | |
|     return head if head.val == target # 找到目標節點,返回之
 | |
| 
 | |
|     head = head.next
 | |
|   end
 | |
| 
 | |
|   nil # 未找到目標節點,返回 None
 | |
| end
 | |
| 
 | |
| ### Driver Code ###
 | |
| if __FILE__ == $0
 | |
|   target = 3
 | |
| 
 | |
|   # 在陣列中執行線性查詢
 | |
|   nums = [1, 5, 3, 2, 4, 7, 5, 9, 10, 8]
 | |
|   index = linear_search_array(nums, target)
 | |
|   puts "目標元素 3 的索引 = #{index}"
 | |
| 
 | |
|   # 在鏈結串列中執行線性查詢
 | |
|   head = arr_to_linked_list(nums)
 | |
|   node = linear_search_linkedlist(head, target)
 | |
|   puts "目標節點值 3 的對應節點物件為 #{node}"
 | |
| end
 |