由买买提看人间百态

topics

全部话题 - 话题: nnode
(共0页)
e******o
发帖数: 757
1
int Nnodes(TreeNode *root) {
if ( root == NULL )
return 0;
if ( root->left == NULL )
return 1;
TreeNode *ptr(root);
int height(0);
while ( ptr ) {
++height;
ptr = ptr->left;
}
ptr = root->left;
int hTemp(0);
while ( ptr ) {
++hTemp;
ptr = ptr->right;
}
if ( hTemp == height-1 )
return ( 1 << hTemp ) + Nnodes(root->right);
else
return ( 1 << hTemp ) + Nnodes(root->left);
}
测试了一下好像没问题。... 阅读全帖
a***n
发帖数: 53
2
来自主题: ME版 - 问个Ansys的问题
using APDL. The APDL file should look like the following.
/post1
*cfopen,nodetemp,txt
*get,nnode,node,,num,count
nn=0
*do,i,1,nnode,1
nn=nnext(nn)
*get,tempatnode,node,nn,temp
*vwrite,nn,tempatnode
(f9.0,tl1,' ',f9.3)
*enddo
*cfclose
p*****p
发帖数: 379
3
来自主题: JobHunting版 - 弱问题,连反转链表都看不懂了
这人写的略乱……
按他的意思
mHead是m点那个
nNode是n后面那个
tmphead造出来不知道干嘛用的
这题用递归容易看
(共0页)