2019年7月9日

Leetcode_897. Increasing Order Search Tree

摘要: 题目:https://leetcode.com/problems/increasing-order-search-tree/ 题意: 将一棵二叉搜索树,重排为一棵递增的二叉排序树。 解法1: rson->root->left的顺序依次遍历整棵树,途中使用头插法建立链表(递增的二叉搜索树)。 这样做会 阅读全文

posted @ 2019-07-09 16:26 JASONlee3 阅读(60) 评论(0) 推荐(0) 编辑

导航