This commit is contained in:
krahets
2024-04-01 05:25:50 +08:00
parent c23e576da4
commit ff7d74401e
28 changed files with 36 additions and 124 deletions

View File

@ -184,8 +184,8 @@ comments: true
attr_accessor :val # 节点值
attr_accessor :next # 指向下一节点的引用
def initialize(val=nil, next_node=nil)
@val = val || 0
def initialize(val=0, next_node=nil)
@val = val
@next = next_node
end
end
@ -1511,8 +1511,8 @@ comments: true
attr_accessor :next # 指向后继节点的引用
attr_accessor :prev # 指向前驱节点的引用
def initialize(val=nil, next_node=nil, prev_node=nil)
@val = val || 0
def initialize(val=0, next_node=nil, prev_node=nil)
@val = val
@next = next_node
@prev = prev_node
end

View File

@ -287,9 +287,9 @@ comments: true
```ruby title="list.rb"
# 访问元素
num = nums[1]
num = nums[1] # 访问索引 1 处的元素
# 更新元素
nums[1] = 0
nums[1] = 0 # 将索引 1 处的元素更新为 0
```
=== "Zig"
@ -299,7 +299,7 @@ comments: true
var num = nums.items[1]; // 访问索引 1 处的元素
// 更新元素
nums.items[1] = 0; // 将索引 1 处的元素更新为 0
nums.items[1] = 0; // 将索引 1 处的元素更新为 0
```
??? pythontutor "可视化运行"
@ -551,10 +551,10 @@ comments: true
nums << 4
# 在中间插入元素
nums.insert 3, 6
nums.insert 3, 6 # 在索引 3 处插入数字 6
# 删除元素
nums.delete_at 3
nums.delete_at 3 # 删除索引 3 处的元素
```
=== "Zig"
@ -718,7 +718,7 @@ comments: true
for (var i = 0; i < nums.length; i++) {
count += nums[i];
}
/* 直接遍历列表元素 */
count = 0;
for (var num in nums) {
@ -972,7 +972,7 @@ comments: true
=== "JS"
```javascript title="list.js"
/* 排序列表 */
/* 排序列表 */
nums.sort((a, b) => a - b); // 排序后,列表元素从小到大排列
```
@ -1014,7 +1014,7 @@ comments: true
```ruby title="list.rb"
# 排序列表
nums = nums.sort { |a, b| a <=> b }
nums = nums.sort { |a, b| a <=> b } # 排序后,列表元素从小到大排列
```
=== "Zig"