Update space_complexity.md

pull/119/head
Yudong Jin 2 years ago committed by GitHub
parent 5617f8246f
commit ae37e902a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -196,7 +196,7 @@ comments: true
=== "Go"
```go title=""
func algorithm1(n int) {
func algorithm(n int) {
a := 0 // O(1)
b := make([]int, 10000) // O(1)
var nums []int
@ -856,18 +856,6 @@ $$
=== "Go"
```go title="space_complexity.go"
/* TreeNode 二叉树 */
type TreeNode struct {
val int
left *TreeNode
right *TreeNode
}
/* 创建 TreeNode 结构体 */
func newTreeNode(val int) *TreeNode {
return &TreeNode{val: val}
}
/* 指数阶(建立满二叉树) */
func buildTree(n int) *TreeNode {
if n == 0 {

Loading…
Cancel
Save