mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 23:36:28 +08:00
16 lines
269 B
Ruby
16 lines
269 B
Ruby
|
=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
|