Re-translate the Japanese version (#1871)

* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
This commit is contained in:
Yudong Jin
2026-03-30 07:30:15 +08:00
committed by GitHub
parent fe6443235b
commit d7b2277d2b
1444 changed files with 83312 additions and 8363 deletions
@@ -0,0 +1,78 @@
=begin
File: array_stack.rb
Created Time: 2024-04-06
Author: Xuan Khoa Tu Nguyen (ngxktuzkai2000@gmail.com)
=end
### 配列で実装したスタック ###
class ArrayStack
### コンストラクタ ###
def initialize
@stack = []
end
### スタックの長さを取得 ###
def size
@stack.length
end
### スタックが空か判定 ###
def is_empty?
@stack.empty?
end
### プッシュ ###
def push(item)
@stack << item
end
### ポップ ###
def pop
raise IndexError, 'スタックは空です' if is_empty?
@stack.pop
end
### スタックトップ要素を参照 ###
def peek
raise IndexError, 'スタックは空です' if is_empty?
@stack.last
end
### 表示用のリストを返す ###
def to_array
@stack
end
end
### Driver Code ###
if __FILE__ == $0
# スタックを初期化
stack = ArrayStack.new
# 要素をプッシュ
stack.push(1)
stack.push(3)
stack.push(2)
stack.push(5)
stack.push(4)
puts "スタック stack = #{stack.to_array}"
# スタックトップの要素にアクセス
peek = stack.peek
puts "スタックトップ要素 peek = #{peek}"
# 要素をポップ
pop = stack.pop
puts "ポップした要素 pop = #{pop}"
puts "ポップ後 stack = #{stack.to_array}"
# スタックの長さを取得
size = stack.size
puts "スタックの長さ size = #{size}"
# 空かどうかを判定
is_empty = stack.is_empty?
puts "スタックが空かどうか = #{is_empty}"
end