skip to main
|
skip to sidebar
aLVinCC's Technical BLOG
标签
Algorithm
(14)
Architecture
(2)
C/C++
(28)
CGAL
(1)
Data Structure
(7)
Direct3D
(1)
GLSL
(2)
Graphics
(7)
HLSL
(1)
Interview Questions
(15)
Math
(6)
OpenGL
(3)
Operating System
(1)
Visual Studio
(5)
2011年1月25日星期二
递归创建二叉树
Tree *Create()
{
char ch;
cin>> ch;
Tree *root;
if( ch == NIL )
{
return NULL;
}
else
{
root = new Tree(ch);
root->left = Create();
root->right = Create();
return root;
}
}
没有评论:
发表评论
较新的博文
较早的博文
主页
订阅:
博文评论 (Atom)
标签
Algorithm
(14)
Architecture
(2)
C/C++
(28)
CGAL
(1)
Data Structure
(7)
Direct3D
(1)
GLSL
(2)
Graphics
(7)
HLSL
(1)
Interview Questions
(15)
Math
(6)
OpenGL
(3)
Operating System
(1)
Visual Studio
(5)
标签
Algorithm
(14)
Architecture
(2)
C/C++
(28)
CGAL
(1)
Data Structure
(7)
Direct3D
(1)
GLSL
(2)
Graphics
(7)
HLSL
(1)
Interview Questions
(15)
Math
(6)
OpenGL
(3)
Operating System
(1)
Visual Studio
(5)
搜索此博客
关注者
博客归档
▼
2011
(51)
►
十二月
(1)
►
十一月
(2)
►
六月
(6)
►
三月
(1)
►
二月
(31)
▼
一月
(10)
<转>求二叉树中节点的最大距离
<转>getchar()详解
<转>找到单链表环路入口
<转>最大子序列的线性时间算法
<转>5分钟搞定内存字节对齐
逗号运算符
<转>不用临时变量交换两个数的值
strcmp实现
递归求二叉树深度
递归创建二叉树
►
2010
(26)
►
十二月
(4)
►
十月
(3)
►
九月
(2)
►
八月
(1)
►
七月
(2)
►
六月
(3)
►
三月
(1)
►
二月
(7)
►
一月
(3)
我的简介
alvincc
查看我的完整个人资料
没有评论:
发表评论