Practice笔试题
Practice
Create a tree, which has h (h0) layers, and its each node has w (w0) sub-nodes.Please complete the following incomplete solution.
#include stdlib.h
#include string.h
struct tree{
char info;
p_sub; //link to sub-nodes};
// allocate memory and initiate
void dnode ( struct tree* tmp )
{
= malloc( sizeof (struct tree) );
= 0x41;
= NULL;
}
struct tree *dtree (struct tree* subtree, int height, int width)
{
int i;
if (!subtree ) //if necessary, allocte memory for subtree
denode(subtree);
if ( height == 1 )
return subtree;
else if ( height == 2 ) {
struct tree *leaf = NULL;
for ( i=0; iwidth; i ) {
denode ( );
;
leaf = NULL;}
return subtree;}
else {
for ( i=0; iwidth; i ) {
}
return subtree;
}
}
main()
{
.........
struct tree *root = NULL;
root = dtree (root, h, w); // h and w are integers get from input
.........
}
【Practice笔试题】相关文章:
360笔试题目07-11
华为2017笔试题08-16
华为2017笔试试题08-10
桂林银行笔试题笔经07-20
QMS2007笔试审核知识模拟试题11-02
眼线笔类型-如何挑选眼线笔11-09
马克笔有哪些分类-马克笔的分类11-03
唇线笔怎么用10-11
ps笔刷怎么安装08-27
美甲笔如何保养10-07