• 回答数

    4

  • 浏览数

    208

美酱老师
首页 > 英语培训 > 非递归英文

4个回答 默认排序
  • 默认排序
  • 按时间排序

北京钢材大全

已采纳

:You couldn't hope me successfully write it,ok?I try my best to do it .

非递归英文

178 评论(8)

碧落的海

以下内容是手打的,可能有小错递归:void swap(Bitree *t){if (!t)return;Bitree *temp = t->left;t->left = t->right;t->right = temp;swap(t->left);swap(t->right);}非递归:void swap(Bitree *t){//个人喜欢以层次为顺序遍历if (!t)return;Bitree *queue[1000]; //这种方式总结点数不能超过1000int count = 0, head = 0;queue[count++] = t;for (;count > head; head ++){Bitree *first = queue[head];Bitree *temp = first->left;first->left = first->right;first->right = temp;if (first->left)queue[count++] = first->left;if (first->right)queue[count++] = first->right;}}

213 评论(10)

Meow儿儿

Amos是一个多义词,一是(圣经)阿莫斯(公元前八世纪的希伯来先知);二是(<<圣经·旧约>>中的)<<阿莫斯书>;三是中国80后摇滚乐队等。

287 评论(12)

阿囧小胖只

递归 recursion 递推 recurrence

199 评论(13)

相关问答