本文介绍了如何在Matlab中使用二叉树?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须使用二叉树在matlab中编写代码,以便对单词进行计数和排序.
I have to write a code in matlab using binary tree in order to count and put in order words.
有人给我任何提示吗?
谢谢
推荐答案
二叉树由具有3个引用的节点组成:左,右和值.您可以使用结构数组构建这些节点之一.
Binary trees are composed of nodes with 3 references: left, right, and value. You can build one of these nodes with a structure array.
root = struct(left, 0, right, 0, value, 'honeybee')
在树中添加更多单词时,将左右字段设置为新节点,从而创建递归数据结构.
As you add more words to your tree, you will set the left and right fields to new nodes, creating your recursive data structure.
root.left = struct(...)
这篇关于如何在Matlab中使用二叉树?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!