- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经编写了一个平衡 BST 的代码,但我无法在 BST 中添加超过 5 个元素!我们有 3 种情况,我们从不平衡的节点到我们想要插入它的节点进行 RR,当我添加 5 个节点时,这段代码工作正常..但是如果我添加更多节点,它会给我 overStack ..这是代码
#include"iostream"
using namespace std;
struct node{
int x;
node*left;
node*right;
};
int max(int x,int y){
if(x>y)return x;return y;
}
int depth(node*T){ // returns the depth of the BST
if(!T)return 0;
return max(depth(T->left),depth(T->right))+1;
}
int isBalance(node*T){ //check if the BST is Balanced or not
return abs(depth(T->left)-depth(T->right))<=1;
}
int Expresion(char*x){ // for switch case
if(!strcmp(x,"RR"))return 3;
if(!strcmp(x,"LL"))return 2;
if(!strcmp(x,"RL"))return 1;
if(!strcmp(x,"LR"))return 0;
return -1;
}
node* getBalance(node*T,char*x){ //Balance the node
node*temp=NULL;
node*temp1=NULL;
node*z=NULL;
switch(Expresion(x)){
case 0:
temp=T->left;
temp1=temp->right;
z = (temp1->right!=NULL)?temp1->right:temp1->left;
temp1->right=T;
T->left=z;
temp->right=NULL;
return temp1;
break;
case 1:
temp=T->right;
temp1=temp->left;
z = (temp1->right!=NULL)?temp1->right:temp1->left;
temp1->left=T;
T->right=z;
temp->left=NULL;
return temp1;
break;
case 2:
temp=T->left;
temp1=temp->left;
temp->right=T;
temp->left=temp1;
return temp;
break;
case 3:
temp=T->right;
temp1=temp->right;
temp->left=T;
temp->right=temp1;
return temp;
break;
}
return NULL;
}
char *Equation(node*x){ //find what is the situation (RR , LL , RL , LR)
char*z=new char;z[0]=NULL;
if(depth(x->right) > depth(x->left)){strcat(z,"R"); x=x->right;}
else {strcat(z,"L");x=x->left;}
if(depth(x->right) > depth(x->left)){strcat(z,"R"); x=x->right;}
else {strcat(z,"L");x=x->left;}
return z;
}
void balance (node*&T){ //balance the BST
if(!T)return;
if(!isBalance(T)){
T=getBalance(T,Equation(T));
return;
}
balance(T->left);
balance(T->right);
}
node*insert1(node*T,int x){ //insert in the BST
if(!T){node*temp=new node;
temp->x=x;temp->left=temp->right=NULL;return temp;}
if(T->x > x) T->left=insert1(T->left,x);
else{T->right=insert1(T->right,x);}
return T;
}
node* insert(node*T,int x){ //insert then Balance the BST
T=insert1(T,x);
balance(T);
return T;
}
void print(node*T){ //prints the BST
if(!T)return;
cout<<T->x<<" ";
print(T->right);
print(T->left);
}
void main(){
node*head=NULL;
/*for(int i=0;i<3;i++){
if(i>50) head=insert(head,(i-3)/2);
else head=insert(head,(i+3)*2);
}*/
head=insert(head,2);
head=insert(head,4);
head=insert(head,1);
head=insert(head,0);
head=insert(head,10);
head=insert(head,64);
head=insert(head,123);
head=insert(head,121);
head=insert(head,28);
head=insert(head,12);
head=insert(head,240);
head=insert(head,42);
head=insert(head,142);
head=insert(head,76);
head=insert(head,100);
cout<<isBalance(head)<<endl;
//print(head);
system("pause");
}
最佳答案
你的树在某处有一个循环引用:
然后,您尝试平衡树,但您的程序在计算其深度时卡住了:无限递归。
这是插入节点 123 后的树(平衡时):
root: (Node 2)
(Node 2)->left: (Node 1)
(Node 1)->left: (Node 0)
(Node 1)->right: none
(Node 2)->right: (Node 10)
(Node 10)->left: (Node 4)
(Node 4)->left: none
(Node 4)->right: (Node 10) !!!!
(Node 10)->right: (Node 64)
(Node 64)->left: none
(Node 64)->right: (Node 123)
我建议您创建一个函数来显示整个树,并在每次插入
后调用它。您的插入路径(insert
本身或 balance
)存在错误。
关于c - 平衡 BST 与四种情况 RR LL LR RL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24677792/
我已经编写了一个 BSTLink 类来将 BST 转换为双向链表,但是在我尝试通过引用传递 BST 的节点指针的类中的构造调用抛出一个错误“没有匹配的函数来调用 BSTLink::construct(
当我使用 xgboost 为 2-cates classification problem 训练我的数据时,我想使用提前停止来获得最佳模型,但我对在我的预测中使用哪一个感到困惑,因为提前停止将返回 3
因为我找不到有用的东西所以我在这里问我的问题: 我们如何在不使用任何额外空间的情况下将 BST 转换为中序链接列表,然后再转换回“相同”的 BST。 到目前为止我已经尝试过的(虽然仍在做):我尝试了
我从我们的教授讲座幻灯片中获得了 BST(二叉搜索树)和随机 BST 的源代码,现在我想通过插入新元素来测试它们是否正常工作,然后我如何才能看到我的结果,如 http://cs.lmu.edu/~ra
给定两棵二叉树 T1 和 T2,您必须找到要在 T1 中完成的最少插入次数,以使其在结构上与 T2 相同。如果不可能则返回 -1。 注意事项 假设插入在 BST 中以正常方式完成。 假设在插入时,如果
我有一个始终将日期存储为 UTC 的网络应用程序,但它们需要分别以 GMT/BST 的形式显示给用户。 我有一个 UTC/GMT 日期(2013 年 3 月 30 日 22:00),我每小时移动一次以
题目地址:https://leetcode-cn.com/problems/largest-bst-subtree/ 题目描述 Given a binary tree, find the larg
注意:BST - 二叉搜索树(缩写) 正如标题所说,这是一项家庭作业,所以我不是在寻找答案。相反,我只需要一个正确方向的点。 对于作业,我应该创建一个 BST 类,它直接定义为最多包含 2 个 BST
我有一个插入方法和一个搜索方法,我正在考虑一种方法来循环二叉搜索树并使用像获取节点这样的方法,然后在另一个二叉搜索树上搜索它,如果它成立,那么我将其插入该元素,但问题是我无法想出一种基于索引获取节点的
function validateBst(root, min=-Infinity, max=Infinity) { if (!root) return true; if (root.value
我有一个问题,我知道如何像这样计算树中的所有节点 return 1 + rightchild(tree->right) + rightchild(tree->left); 现在我的问题是如果一个节点在
给定一个二叉树根,任务是返回 任何子树的所有键的最大总和 这也是 二叉搜索树 (BST) . 假设 BST 定义如下: - 节点的左子树仅包含键小于节点键的节点。 - 节点的右子树仅包含键大于节点键的
我正在尝试使用 ScalaCheck 为 BST 创建一个 Gen,但是当我调用 .sample 方法时,它给了我 java.lang.NullPointerException。我哪里错了? seal
这些是我的领域: public class BSTSet extends AbstractSet { // Data fields private BSTNode root;
我需要在二叉搜索树中执行范围搜索功能,这将给出给定范围内的项目数量。我不明白如何在找到项目时增加计数值。因为,我必须使用递归函数&如果我在递归过程中将计数变量初始化为0,它将始终从0开始计数值,而不是
所以我正在尝试编写一个代码来返回二叉搜索树中的最小值。我知道这是树的最左边的值,并且我知道我需要它递归地向左运行,直到什么都没有为止。但是我的代码不起作用,我不知道为什么。任何帮助将不胜感激。 (de
我想返回一个包含树中所有键的字符串,按照它们的存储顺序。每个子树中的键应包含在括号中。 _7_ / \ _3_ 8 / \ 1
尝试运行递归算法来找出某棵树是否是 BST(二叉搜索树)。 boolean checkBST(Node root) { boolean isBST = true; if(root ==
使用下面的代码,每个时区都正确打印值,除了 BST import java.text.*; def format = "yyyy-MM-dd HH:mm:ssXXX" def dt = new Da
您能帮忙搜索功能吗,它总是返回nil,我不明白为什么 func BTreeSearchItem(root *TreeNode, elem string) *TreeNode { if root
我是一名优秀的程序员,十分优秀!