会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
TopCoderのZeze
At Ease, What You Want, Time Will Give You
首页
新随笔
联系
订阅
管理
2013年11月30日
基本二叉搜索树的第K小元素
摘要: 1 #include 2 #include 3 typedef struct node *btlink; 4 struct node 5 { 6 int data; 7 btlink left; 8 btlink right; 9 int t; 10 }; 11 12 btlink BT; 13 void insert(btlink q, i...
阅读全文
posted @ 2013-11-30 17:26 陈泽泽
阅读(215)
评论(0)
推荐(0)
公告