Typescript类型体操 - InorderTraversal

题目 中文 实现二叉树的中序遍历 示例: const tree1 = { val: 1, left: null, right: { val: 2, left: { val: 3, left: null, right: null, }, right: null, }, } as const; type
posted @ 2022-09-29 21:53  Laggage  阅读(24)  评论(0编辑  收藏  举报