鱼C论坛

 找回密码
 立即注册
查看: 943|回复: 2

[已解决]伪代码转换成C语言代码

[复制链接]
发表于 2020-7-27 16:18:18 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
请问怎么将这个伪代码转换成C语言的代码?
这个是平衡树的



谢谢!
最佳答案
2020-7-27 16:56:09
不懂是什么语言,感觉有点像 EXECL 中宏,我找个理由多回一个帖子吧,帮你将图片转换成文字如下:

Input tree t with n nodes
Output t rebalanced
if n >= 3 then
      t = partition(t,[n/2])
      left(t) = rebalance(left(t))
      right(t) = rebalance(right(t))
end if
      return t


partition(tree,i):
       Input tree with n nodes,index i
       Output tree with item #i moved to the root

       m = #nodes(left(tree)
       if i <m then
            left(tree) = partition(left(tree),i)
            tree = rotateRight(tree)
       else if i  >  m then
             right(tree) = partition(right(tree),i - m - 1)
             tree = rotateLeft(tree)
       end if
       return tree
IMG_0384.jpg

#node代表node的数量

#node代表node的数量
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-27 16:56:09 | 显示全部楼层    本楼为最佳答案   
不懂是什么语言,感觉有点像 EXECL 中宏,我找个理由多回一个帖子吧,帮你将图片转换成文字如下:

Input tree t with n nodes
Output t rebalanced
if n >= 3 then
      t = partition(t,[n/2])
      left(t) = rebalance(left(t))
      right(t) = rebalance(right(t))
end if
      return t


partition(tree,i):
       Input tree with n nodes,index i
       Output tree with item #i moved to the root

       m = #nodes(left(tree)
       if i <m then
            left(tree) = partition(left(tree),i)
            tree = rotateRight(tree)
       else if i  >  m then
             right(tree) = partition(right(tree),i - m - 1)
             tree = rotateLeft(tree)
       end if
       return tree
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-27 17:04:15 | 显示全部楼层
风过无痕1989 发表于 2020-7-27 16:56
不懂是什么语言,感觉有点像 EXECL 中宏,我找个理由多回一个帖子吧,帮你将图片转换成文字如下:

Input ...

这个就是伪代码。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 10:14

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表