You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
476 B
25 lines
476 B
=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
|