mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-14 12:40:58 +00:00
refactor: Replace 结点 with 节点 (#452)
* Replace 结点 with 节点 Update the footnotes in the figures * Update mindmap * Reduce the size of the mindmap.png
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
*/
|
||||
|
||||
public class ListNode {
|
||||
public var val: Int // 结点值
|
||||
public var next: ListNode? // 后继结点引用
|
||||
public var val: Int // 节点值
|
||||
public var next: ListNode? // 后继节点引用
|
||||
|
||||
public init(x: Int) {
|
||||
val = x
|
||||
|
||||
Reference in New Issue
Block a user