1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
| type Codec struct { StrArray []string path int } func Constructor() Codec { return Codec{ StrArray: []string{}, path: 0, } }
func (this *Codec) serialize(root *TreeNode) string { this.SeRecusival(root) return strings.Join(this.StrArray, ",") }
func (this *Codec) deserialize(data string) *TreeNode { this.StrArray = strings.Split(data, ",") this.path = 0 return this.DeRecusival() }
func (this *Codec) DeRecusival() *TreeNode { if this.StrArray[this.path] == "nil" { return nil } intVar, _ := strconv.Atoi(this.StrArray[this.path]) root := &TreeNode{Val: intVar} this.path++ root.Left = this.DeRecusival() this.path++ root.Right = this.DeRecusival() return root } func (this *Codec) SeRecusival(root *TreeNode) { if root == nil { this.StrArray = append(this.StrArray, "nil") return } this.StrArray = append(this.StrArray, strconv.Itoa(root.Val)) this.SeRecusival(root.Left) this.SeRecusival(root.Right) }
<!-- more -->
|