mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 13:06:28 +08:00
870e3e5cb2
* Sync zh and zh-hant versions * Update en/README.md * Add a Q&A for chapter of introduction * Update the callout headers * Sync zh ang zh-hant versions * Bug fixes
24 lines
476 B
Ruby
24 lines
476 B
Ruby
=begin
|
|
File: vertex.rb
|
|
Created Time: 2024-04-25
|
|
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
|
|
=end
|
|
|
|
### 頂點類別 ###
|
|
class Vertex
|
|
attr_accessor :val
|
|
|
|
def initialize(val)
|
|
@val = val
|
|
end
|
|
end
|
|
|
|
### 輸入值串列 vals ,返回頂點串列 vets ###
|
|
def vals_to_vets(vals)
|
|
Array.new(vals.length) { |i| Vertex.new(vals[i]) }
|
|
end
|
|
|
|
### 輸入頂點串列 vets, 返回值串列 vals ###
|
|
def vets_to_vals(vets)
|
|
Array.new(vets.length) { |i| vets[i].val }
|
|
end
|