feat: Add ruby code - chapter "array & linked list" (#1158)
* feat: add ruby code chapter array & linked list - array.rb - linked_list.rb - list.rb - my_list.rb * feat: add ruby code blocks * chore: fix conventionpull/1199/head
parent
e799513173
commit
85ca4cce43
@ -0,0 +1,82 @@
|
||||
=begin
|
||||
File: linked_list.rb
|
||||
Created Time: 2024-03-18
|
||||
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
|
||||
=end
|
||||
|
||||
require_relative '../utils/list_node'
|
||||
require_relative '../utils/print_util'
|
||||
|
||||
### 在链表的节点 n0 之后插入节点 _p ###
|
||||
# Ruby 的 `p` 是一个内置函数, `P` 是一个常量,所以可以使用 `_p` 代替
|
||||
def insert(n0, _p)
|
||||
n1 = n0.next
|
||||
_p.next = n1
|
||||
n0.next = _p
|
||||
end
|
||||
|
||||
### 删除链表的节点 n0 之后的首个节点 ###
|
||||
def remove(n0)
|
||||
return if n0.next.nil?
|
||||
|
||||
# n0 -> remove_node -> n1
|
||||
remove_node = n0.next
|
||||
n1 = remove_node.next
|
||||
n0.next = n1
|
||||
end
|
||||
|
||||
### 访问链表中索引为 index 的节点 ###
|
||||
def access(head, index)
|
||||
for i in 0...index
|
||||
return nil if head.nil?
|
||||
head = head.next
|
||||
end
|
||||
|
||||
head
|
||||
end
|
||||
|
||||
### 在链表中查找值为 target 的首个节点 ###
|
||||
def find(head, target)
|
||||
index = 0
|
||||
while head
|
||||
return index if head.val == target
|
||||
head = head.next
|
||||
index += 1
|
||||
end
|
||||
|
||||
-1
|
||||
end
|
||||
|
||||
### Driver Code ###
|
||||
|
||||
# 初始化链表
|
||||
# 初始化各个节点
|
||||
n0 = ListNode.new 1
|
||||
n1 = ListNode.new 3
|
||||
n2 = ListNode.new 2
|
||||
n3 = ListNode.new 5
|
||||
n4 = ListNode.new 4
|
||||
# 构建节点之间的引用
|
||||
n0.next = n1
|
||||
n1.next = n2
|
||||
n2.next = n3
|
||||
n3.next = n4
|
||||
puts "初始化的链表为"
|
||||
print_linked_list n0
|
||||
|
||||
# 插入节点
|
||||
insert n0, ListNode.new(0)
|
||||
print_linked_list n0
|
||||
|
||||
# 删除节点
|
||||
remove n0
|
||||
puts "删除节点后的链表为"
|
||||
print_linked_list n0
|
||||
|
||||
# 访问节点
|
||||
node = access n0, 3
|
||||
puts "链表中索引 3 处的节点的值 = #{node.val}"
|
||||
|
||||
# 查找节点
|
||||
index = find n0, 2
|
||||
puts "链表中值为 2 的节点的索引 = #{index}"
|
@ -0,0 +1,59 @@
|
||||
=begin
|
||||
File: list.rb
|
||||
Created Time: 2024-03-18
|
||||
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
|
||||
=end
|
||||
|
||||
### Driver Code ###
|
||||
|
||||
# 初始化列表
|
||||
nums = [1, 3, 2, 5, 4]
|
||||
puts "列表 nums = #{nums}"
|
||||
|
||||
# 访问元素
|
||||
num = nums[1]
|
||||
puts "访问索引 1 处的元素,得到 num = #{num}"
|
||||
|
||||
# 更新元素
|
||||
nums[1] = 0
|
||||
puts "将索引 1 处的元素更新为 0 ,得到 nums = #{nums}"
|
||||
|
||||
# 清空列表
|
||||
nums.clear
|
||||
puts "清空列表后 nums = #{nums}"
|
||||
|
||||
# 在尾部添加元素
|
||||
nums << 1
|
||||
nums << 3
|
||||
nums << 2
|
||||
nums << 5
|
||||
nums << 4
|
||||
puts "添加元素后 nums = #{nums}"
|
||||
|
||||
# 在中间插入元素
|
||||
nums.insert 3, 6
|
||||
puts "在索引 3 处插入元素 6 ,得到 nums = #{nums}"
|
||||
|
||||
# 删除元素
|
||||
nums.delete_at 3
|
||||
puts "删除索引 3 处的元素,得到 nums = #{nums}"
|
||||
|
||||
# 通过索引遍历列表
|
||||
count = 0
|
||||
for i in 0...nums.length
|
||||
count += nums[i]
|
||||
end
|
||||
|
||||
# 直接遍历列表元素
|
||||
count = 0
|
||||
nums.each do |x|
|
||||
count += x
|
||||
end
|
||||
|
||||
# 拼接两个列表
|
||||
nums1 = [6, 8, 7, 10, 9]
|
||||
nums += nums1
|
||||
puts "将列表 nums1 拼接到 nums 之后,得到 nums = #{nums}"
|
||||
|
||||
nums = nums.sort { |a, b| a <=> b }
|
||||
puts "排序列表后 nums = #{nums}"
|
@ -0,0 +1,131 @@
|
||||
=begin
|
||||
File: my_list.rb
|
||||
Created Time: 2024-03-18
|
||||
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
|
||||
=end
|
||||
|
||||
### 列表类 ###
|
||||
class MyList
|
||||
attr_reader :size # 获取列表长度(当前元素数量)
|
||||
attr_reader :capacity # 获取列表容量
|
||||
|
||||
### 构造方法 ###
|
||||
def initialize
|
||||
@capacity = 10
|
||||
@size = 0
|
||||
@extend_ratio = 2
|
||||
@arr = Array.new capacity
|
||||
end
|
||||
|
||||
### 访问元素 ###
|
||||
def get(index)
|
||||
# 索引如果越界,则抛出异常,下同
|
||||
raise IndexError, "索引越界" if index < 0 || index >= size
|
||||
@arr[index]
|
||||
end
|
||||
|
||||
### 访问元素 ###
|
||||
def set(index, num)
|
||||
raise IndexError, "索引越界" if index < 0 || index >= size
|
||||
@arr[index] = num
|
||||
end
|
||||
|
||||
### 在尾部添加元素 ###
|
||||
def add(num)
|
||||
# 元素数量超出容量时,触发扩容机制
|
||||
extend_capacity if size == capacity
|
||||
@arr[size] = num
|
||||
|
||||
# 更新元素数量
|
||||
@size += 1
|
||||
end
|
||||
|
||||
### 在中间插入元素 ###
|
||||
def insert(index, num)
|
||||
raise IndexError, "索引越界" if index < 0 || index >= size
|
||||
|
||||
# 元素数量超出容量时,触发扩容机制
|
||||
extend_capacity if size == capacity
|
||||
|
||||
# 将索引 index 以及之后的元素都向后移动一位
|
||||
for j in (size - 1).downto(index)
|
||||
@arr[j + 1] = @arr[j]
|
||||
end
|
||||
@arr[index] = num
|
||||
|
||||
# 更新元素数量
|
||||
@size += 1
|
||||
end
|
||||
|
||||
### 删除元素 ###
|
||||
def remove(index)
|
||||
raise IndexError, "索引越界" if index < 0 || index >= size
|
||||
num = @arr[index]
|
||||
|
||||
# 将将索引 index 之后的元素都向前移动一位
|
||||
for j in index...size
|
||||
@arr[j] = @arr[j + 1]
|
||||
end
|
||||
|
||||
# 更新元素数量
|
||||
@size -= 1
|
||||
|
||||
# 返回被删除的元素
|
||||
num
|
||||
end
|
||||
|
||||
### 列表扩容 ###
|
||||
def extend_capacity
|
||||
# 新建一个长度为原数组 extend_ratio 倍的新数组,并将原数组复制到新数组
|
||||
arr = @arr.dup + Array.new(capacity * (@extend_ratio - 1))
|
||||
# 更新列表容量
|
||||
@capacity = arr.length
|
||||
end
|
||||
|
||||
### 将列表转换为数组 ###
|
||||
def to_array
|
||||
sz = size
|
||||
# 仅转换有效长度范围内的列表元素
|
||||
arr = Array.new sz
|
||||
for i in 0...sz
|
||||
arr[i] = get i
|
||||
end
|
||||
arr
|
||||
end
|
||||
end
|
||||
|
||||
### Driver Code ###
|
||||
|
||||
# 初始化列表
|
||||
nums = MyList.new
|
||||
|
||||
# 在尾部添加元素
|
||||
nums.add 1
|
||||
nums.add 3
|
||||
nums.add 2
|
||||
nums.add 5
|
||||
nums.add 4
|
||||
puts "列表 nums = #{nums.to_array} ,容量 = #{nums.capacity} ,长度 = #{nums.size}"
|
||||
|
||||
# 在中间插入元素
|
||||
nums.insert 3, 6
|
||||
puts "在索引 3 处插入数字 6 ,得到 nums = #{nums.to_array}"
|
||||
|
||||
# 删除元素
|
||||
nums.remove 3
|
||||
puts "删除索引 3 的元素,得到 nums = #{nums.to_array}"
|
||||
|
||||
# 访问元素
|
||||
num = nums.get 1
|
||||
puts "访问索引 1 处的元素,得到 num = #{num}"
|
||||
|
||||
# 更新元素
|
||||
nums.set 1, 0
|
||||
puts "将索引 1 处的元素更新为 0 ,得到 nums = #{nums.to_array}"
|
||||
|
||||
# 测试扩容机制
|
||||
for i in 0...10
|
||||
# 在 i = 5 时,列表长度将超出列表容量,此时触发扩容机制
|
||||
nums.add i
|
||||
end
|
||||
puts "扩容后的列表 nums = #{nums.to_array} ,容量 = #{nums.capacity} ,长度 = #{nums.size}"
|
@ -0,0 +1,38 @@
|
||||
=begin
|
||||
File: list_node.rb
|
||||
Created Time: 2024-03-18
|
||||
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
|
||||
=end
|
||||
|
||||
### 链表节点类 ###
|
||||
class ListNode
|
||||
attr_accessor :val # 节点值
|
||||
attr_accessor :next # 指向下一节点的引用
|
||||
|
||||
def initialize(val=nil, next_node=nil)
|
||||
@val = val || 0
|
||||
@next = next_node
|
||||
end
|
||||
end
|
||||
|
||||
### 将列表序列化为链表 ###
|
||||
def arr_to_linked_list(arr)
|
||||
head = current = ListNode.new arr[0]
|
||||
|
||||
for i in 1...arr.length
|
||||
current.next = ListNode.new arr[i]
|
||||
current = current.next
|
||||
end
|
||||
|
||||
head
|
||||
end
|
||||
|
||||
### 将链表反序列化为列表 ###
|
||||
def linked_list_to_arr(head)
|
||||
arr = []
|
||||
|
||||
while head
|
||||
arr << head.val
|
||||
head = head.next
|
||||
end
|
||||
end
|
@ -0,0 +1,15 @@
|
||||
=begin
|
||||
File: print_util.rb
|
||||
Created Time: 2024-03-18
|
||||
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
|
||||
=end
|
||||
|
||||
### 打印链表 ###
|
||||
def print_linked_list(head)
|
||||
list = []
|
||||
while head
|
||||
list << head.val
|
||||
head = head.next
|
||||
end
|
||||
puts "#{list.join(" -> ")}"
|
||||
end
|
Loading…
Reference in new issue