C++
Java
Python
Python3
C
C#
JavaScript
Ruby
Swift
Go
Scala
Kotlin
Rust
PHP
TypeScript
Racket
Erlang
Elixir
Dart
monokai
ambiance
chaos
chrome
cloud9_day
cloud9_night
cloud9_night_low_color
clouds
clouds_midnight
cobalt
crimson_editor
dawn
dracula
dreamweaver
eclipse
github
github_dark
gob
gruvbox
gruvbox_dark_hard
gruvbox_light_hard
idle_fingers
iplastic
katzenmilch
kr_theme
kuroir
merbivore
merbivore_soft
mono_industrial
nord_dark
one_dark
pastel_on_dark
solarized_dark
solarized_light
sqlserver
terminal
textmate
tomorrow
tomorrow_night
tomorrow_night_blue
tomorrow_night_bright
tomorrow_night_eighties
twilight
vibrant_ink
xcode
上次编辑到这里,代码来自缓存 点击恢复默认模板
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int kthSmallest(TreeNode* root, int k) {
}
};
运行代码
提交
golang 解法, 执行用时: 12 ms, 内存消耗: 6.2 MB, 提交时间: 2020-11-20 16:12:00
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func kthSmallest(root *TreeNode, k int) int {
arr := []int{}
inorder(root, &arr)
return arr[k-1]
}
func inorder(node *TreeNode, arr *[]int) {
if node != nil {
inorder(node.Left, arr)
*arr = append(*arr, node.Val)
inorder(node.Right, arr)
}
return
}
python3 解法, 执行用时: 64 ms, 内存消耗: 17.5 MB, 提交时间: 2020-11-20 16:01:25
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def kthSmallest(self, root: TreeNode, k: int) -> int:
def inorder(r):
return inorder(r.left) + [r.val] + inorder(r.right) if r else []
return inorder(root)[k-1]
python3 解法, 执行用时: 100 ms, 内存消耗: 17.4 MB, 提交时间: 2020-11-20 15:39:00
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def kthSmallest(self, root: TreeNode, k: int) -> int:
def gen(r: TreeNode):
if r:
yield from gen(r.left)
yield r.val
yield from gen(r.right)
it = gen(root)
for _ in range(k):
ans = next(it)
return ans
python3 解法, 执行用时: 60 ms, 内存消耗: 17.3 MB, 提交时间: 2020-11-20 15:29:43
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def kthSmallest(self, root: TreeNode, k: int) -> int:
# 先排序, 再取ans[k-1]
ans = [root.val]
stack = [root.left, root.right]
while stack:
node = stack.pop(0)
if node != None:
ans.append(node.val)
if node.left:
stack.append(node.left)
if node.right:
stack.append(node.right)
ans.sort()
return ans[k-1]