精明纸鹤

文章
5
资源
0
加入时间
2年10月18天

简单题(二叉搜索树中第k小的元素)

很简单的中序遍历,代码如下://中序遍历class Solution {public: int kthSmallest(TreeNode* root, int k) { DFS(root, k); return res; } void DFS(TreeNode* root, int k) { if (root == NULL) return; DFS(root-...

【NOI2015】软件包管理器

题意:不说题解这题跟上一篇blog解题思路类似。CODE#include<cstdio> #include<algorithm>#include<cstring>using namespace std;typedef int arr[200000];arr son,fa,to,size,top,ql,qr,next,head...