英文: Visualizing self-balancing binary tree (AVL-tree) 问题 我已经为可视化二叉搜索树编写了一个应用程序。现在我正在尝试修改它以可视化自平衡二叉搜索...
打印所有是根节点倍数的节点,使用 Java。
英文: print all the nodes which are multiples of root node using java 问题 这是二叉树的情况。(请参见下面的图片。)我需要打印中序遍历...
这是有效的二叉搜索树插入吗?
英文: Is this the efficient BST Insertion? 问题 我根据逻辑自己实现了二叉搜索树插入方法。 所以,有人可以验证一下代码在插入和搜索时是否正常工作(可以使用自己的搜...
在树数据结构中遍历(中序遍历),在Java中不起作用。
英文: Traversal in Tree Data Structure (IN-Order) not working in java 问题 以下是翻译的内容: 我对数据结构还不熟悉,目前正在编写一个...
有些问题涉及二分搜索,有人能看看吗?
英文: Having some problems with binary search can someone look to it? 问题 以下是您要求的翻译好的内容: import java.ut...
如何在Java中遍历通过道路连接的城市网络?
英文: How to traverse through a network of cities connected by roads in java? 问题 I encountered a probl...
在一个整数范围的有序集合中高效地查找一个整数。
英文: Efficiently find an integer in a sorted collection of integer ranges 问题 问题 我有一个大型的IP地址范围列表,我想要高效...
检查两棵二叉搜索树是否相等
英文: Checking if 2 Binary search trees are equal 问题 以下是翻译好的部分: 我正在创建一个二叉搜索树项目,其中一个问题是创建两棵树并检查它们是否相等。当...
Bst with particular characteristics; Bst which keeps nodes with multiple interactions at the root
英文: Bst with particular characteristics; Bst which keeps nodes with multiple interactions at the roo...
如何随机地向二叉搜索树中插入节点?
英文: How do I randomly insert nodes into a binary search tree? 问题 public void Insert(Comparable key, ...
4