增加新题目
This commit is contained in:
14
链表/随机链表的复制/main.go
Normal file
14
链表/随机链表的复制/main.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
type Node struct {
|
||||
Val int
|
||||
Next *Node
|
||||
Random *Node
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
||||
}
|
||||
func copyRandomList(head *Node) *Node {
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user