Files
Hot-100-Algorithm/链表/随机链表的复制/main.go

15 lines
147 B
Go
Raw Normal View History

2025-08-24 04:20:11 +08:00
package main
type Node struct {
Val int
Next *Node
Random *Node
}
func main() {
}
func copyRandomList(head *Node) *Node {
return nil
}