mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 19:26:28 +08:00
92337671a6
* create RUBY searching files & finish two_sum.rb * finish linear_search.rb * finish hashing_search.rb * finish binary_search.rb * finish binary_search_insertion.rb * finish binary_search_edge.rb * fix: change 'or' to '||' * fix: Adjust the code style(ruby searching) * fix: repair file name * fix: Adjust the output format * fix: fix 0...nums.length & delete useless require & change into __FILE__==0 block
44 lines
1 KiB
Ruby
44 lines
1 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
|