Kth Smallest Element in a BST -- leetcode

来源:互联网 发布:linux 编译安装php5.5 编辑:程序博客网 时间:2024/06/05 04:50

Given a binary search tree, write a function kthSmallest to find the kth smallest element in it.

Note: 
You may assume k is always valid, 1 ≤ k ≤ BST's total elements.

Follow up:
What if the BST is modified (insert/delete operations) often and you need to find the kth smallest frequently? How would you optimize the kthSmallest routine?



基本思路:

进行中序遍历。


/** * Definition for a binary tree node. * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    int kthSmallest(TreeNode* root, int k) {        stack<TreeNode *> s;        while (!s.empty() || root) {            while (root) {                s.push(root);                root = root->left;            }            root = s.top();            s.pop();            if (!--k)                return root->val;            root = root->right;        }        return 0;    }};


0 0
原创粉丝点击