- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
以下代码运行失败。
这是我的代码:
#ifndef STACK_H
#define STACK_H
//#include "BinaryTree.h"
using namespace std;
template<class T>
class stack
{
public:
stack(); // constructor
T pop(); // pop with type BinaryTree
void push(T x); // push BinaryTree on top
bool empty(); // return t/f if stack is empty
int size(); // return size to keep track of stack
private:
T arr[10]; // array with 10 elements
int ele; // keeps track of top of list
};
/******************************************************/
template<class T>
stack<T>::stack()
{
ele = 0;
}
template<class T>
T stack<T>::pop()
{
return arr[--ele];
}
template<class T>
void stack<T>::push(T x)
{
arr[ele++] = x;
}
template<class T>
bool stack<T>::empty()
{
if(ele == 0)
{
return true;
}
}
template<class T>
int stack<T>::size()
{
return ele;
}
#endif /* STACK_H */
#ifndef BINARYTREE_H
#define BINARYTREE_H
using namespace std;
我需要 3 个构造函数;对于第三个构造函数,它不会处理。我认为这是因为我正在调用同一个类中的另一个构造函数。
template<typename T> class BinaryTree
{
public:
// Binary Tree Things
BinaryTree(); // default constructor to make empty tree
BinaryTree(T ro); // default constructor 2 to make tree with only root
BinaryTree(T ro, T le, T ri); // default constructor 3 to make complete binary tree
//~BinaryTree(); // destructor for dynamics
bool isEmpty(); // method that returns t/f if tree is empty
T info(); // method to return value in root of the tree
void inOrder(); // traverses nodes in a tree left, root, right
void preOrder(); // traverses nodes in a tree root, left, right
void postOrder(); // traverses nodes in a tree left, right, root
private:
struct Tree_Node // represents a node
{
T Node_Info;
BinaryTree<T> *left; // left pointer
BinaryTree<T> *right; // right pointer
};
Tree_Node *root; // create root with 2 pointers from this };
};
/***********************************************************************/
template<typename T> BinaryTree<T>::BinaryTree()
{
}
template<typename T> BinaryTree<T>::BinaryTree(T ro)
{
this->root->Node_Info = ro;
this->root->left = 0;
this->root->right = 0;
}
template<typename T> BinaryTree<T>::BinaryTree(T ro, T le, T ri)
{
// create temps for left and right
BinaryTree<T> *templeft = new BinaryTree(le);
templeft->root->Node_Info = le;
BinaryTree<T> *tempright = new BinaryTree(ri);
tempright->root->Node_Info = ri;
// re-assign everything
this->root->Node_Info = ro;
this->root->left = templeft;
this->root->right = tempright;
}
/*template<typename T> BinaryTree<T>::~BinaryTree() {
delete root; }*/
template<typename T> bool BinaryTree<T>::isEmpty()
{
return false;
}
template<typename T> T BinaryTree<T>::info()
{
}
template<typename T> void BinaryTree<T>::inOrder()
{
}
template<typename T> void BinaryTree<T>::preOrder()
{
}
template<typename T> void BinaryTree<T>::postOrder()
{
}
#endif /* BINARYTREE_H */
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <math.h>
#include <cmath>
#include <ctime>
#include <limits>
//#include "BinaryTree.h"
//#include "stack.h"
using namespace std;
int main()
{
stack<BinaryTree<char> > testing;
BinaryTree<char> testing2('d', 'd', 'd');
testing.push(testing2);
cout << testing.size();
return 0;
}
最佳答案
您正在按值推送二叉树:
stack<BinaryTree<char> > testing;
BinaryTree<char> testing2('d', 'd', 'd');
testing.push(testing2);
然而,BinaryTree 不支持 复制,因为它会进行浅复制(没有三规则特殊成员)。这意味着,拷贝将共享 root
指针和二叉树的意志 delete
一样root
(假设您取消注释该关键代码)。
这是一个将必要的特殊成员添加到 BinaryTree<T>
的修复程序和 BinaryTree<T>::Tree_Node
:
(复制)BinaryTree<T>
的构造函数 + 析构函数
BinaryTree(BinaryTree const& other)
: root(other.root? new Tree_Node(*other.root) : 0)
{}
(复制)BinaryTree<T>::Tree_Node
的构造函数 + 析构函数
struct Tree_Node // represents a node
{
T data;
Tree_Node *left; // left pointer
Tree_Node *right; // right pointer
Tree_Node(T data, Tree_Node* left = 0, Tree_Node* right = 0)
: data(data), left(left), right(right) {}
Tree_Node(Tree_Node const& other)
: data(other.data),
left (other.left? new Tree_Node(*other.left) : 0),
right(other.right?new Tree_Node(*other.right) : 0)
{}
~Tree_Node()
{
delete left;
delete right;
}
};
Tree_Node
周围所以它拥有其他 Tree_Node
与完整的 BinaryTree 相反(此更改是无偿的,源于我在尝试修复任何内容之前尝试减少噪音)也在“降噪”类别中,我重新探测了 stack<T>
在 std::vector<T>
之上只是为了排除这是错误的来源。
Big DISCLAIMER: Not much of this code is actually exception safe as written, now. I'll assume that exception safety hasn't been on the menu for this course, yet. Edit but see comment.
查看 Live On IdeOne :
#ifndef STACK_H
#define STACK_H
//#include "BinaryTree.h"
using namespace std;
#include <cassert>
#include <vector>
template<class T>
class stack
{
public:
T pop() { assert(!empty()); T v = _data.back(); _data.pop_back(); return v; }
void push(T x) { _data.push_back(x); }
bool empty() { return _data.empty(); }
int size() { return _data.size(); }
private:
std::vector<T> _data;
};
#endif /* STACK_H */
#ifndef BINARYTREE_H
#define BINARYTREE_H
using namespace std;
template<typename T> class BinaryTree
{
public:
// Binary Tree Things
BinaryTree(); // default constructor to make empty tree
BinaryTree(T ro); // default constructor 2 to make tree with only root
BinaryTree(T ro, T le, T ri); // default constructor 3 to make complete binary tree
~BinaryTree(); // destructor for dynamics
BinaryTree(BinaryTree const& other) : root(other.root? new Tree_Node(*other.root) : 0) {}
bool isEmpty(); // method that returns t/f if tree is empty
T info(); // method to return value in root of the tree
void inOrder(); // traverses nodes in a tree left, root, right
void preOrder(); // traverses nodes in a tree root, left, right
void postOrder(); // traverses nodes in a tree left, right, root
private:
struct Tree_Node // represents a node
{
T data;
Tree_Node *left; // left pointer
Tree_Node *right; // right pointer
Tree_Node(T data, Tree_Node* left = 0, Tree_Node* right = 0)
: left(left), right(right) {}
Tree_Node(Tree_Node const& other)
: data(other.data),
left (other.left? new Tree_Node(*other.left) : 0),
right(other.right?new Tree_Node(*other.right) : 0)
{}
~Tree_Node()
{
delete left;
delete right;
}
};
Tree_Node *root; // create root with 2 pointers from this };
};
/***********************************************************************/
template<typename T> BinaryTree<T>::BinaryTree()
: root(0)
{
}
template<typename T> BinaryTree<T>::BinaryTree(T ro)
: root(new Tree_Node(ro, 0, 0))
{
}
template<typename T> BinaryTree<T>::BinaryTree(T ro, T le, T ri)
: root(new Tree_Node(ro,
new Tree_Node (le, 0, 0),
new Tree_Node (ri, 0, 0)))
{
}
template<typename T> BinaryTree<T>::~BinaryTree() {
delete root;
}
template<typename T> bool BinaryTree<T>::isEmpty()
{
return !root;
}
template<typename T> T BinaryTree<T>::info()
{
}
template<typename T> void BinaryTree<T>::inOrder()
{
}
template<typename T> void BinaryTree<T>::preOrder()
{
}
template<typename T> void BinaryTree<T>::postOrder()
{
}
#endif /* BINARYTREE_H */
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <math.h>
#include <cmath>
#include <ctime>
#include <limits>
//#include "BinaryTree.h"
//#include "stack.h"
using namespace std;
int main()
{
stack<BinaryTree<char> > testing;
BinaryTree<char> testing2('d', 'd', 'd');
testing.push(testing2);
cout << testing.size();
return 0;
}
enter code here
关于c++ - 程序运行一直失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18994195/
我是 C 语言新手,我编写了这个 C 程序,让用户输入一年中的某一天,作为返回,程序将输出月份以及该月的哪一天。该程序运行良好,但我现在想简化该程序。我知道我需要一个循环,但我不知道如何去做。这是程序
我一直在努力找出我的代码有什么问题。这个想法是创建一个小的画图程序,并有红色、绿色、蓝色和清除按钮。我有我能想到的一切让它工作,但无法弄清楚代码有什么问题。程序打开,然后立即关闭。 import ja
我想安装screen,但是接下来我应该做什么? $ brew search screen imgur-screenshot screen
我有一个在服务器端工作的 UDP 套接字应用程序。为了测试服务器端,我编写了一个简单的 python 客户端程序,它发送消息“hello world how are you”。服务器随后应接收消息,将
我有一个 shell 脚本,它运行一个 Python 程序来预处理一些数据,然后运行一个 R 程序来执行一些长时间运行的任务。我正在学习使用 Docker 并且我一直在运行 FROM r-base:l
在 Linux 中。我有一个 c 程序,它读取一个 2048 字节的文本文件作为输入。我想从 Python 脚本启动 c 程序。我希望 Python 脚本将文本字符串作为参数传递给 c 程序,而不是将
前言 最近开始整理笔记里的库存草稿,本文是 23 年 5 月创建的了(因为中途转移到 onedrive,可能还不止) 网页调起电脑程序是经常用到的场景,比如百度网盘下载,加入 QQ 群之类的 我
对于一个类,我被要求编写一个 VHDL 程序,该程序接受两个整数输入 A 和 B,并用 A+B 替换 A,用 A-B 替换 B。我编写了以下程序和测试平台。它完成了实现和行为语法检查,但它不会模拟。尽
module Algorithm where import System.Random import Data.Maybe import Data.List type Atom = String ty
我想找到两个以上数字的最小公倍数 求给定N个数的最小公倍数的C++程序 最佳答案 int lcm(int a, int b) { return (a/gcd(a,b))*b; } 对于gcd,请查看
这个程序有错误。谁能解决这个问题? Error is :TempRecord already defines a member called 'this' with the same paramete
当我运行下面的程序时,我在 str1 和 str2 中得到了垃圾值。所以 #include #include #include using namespace std; int main() {
这是我的作业: 一对刚出生的兔子(一公一母)被放在田里。兔子在一个月大时可以交配,因此在第二个月的月底,每对兔子都会生出两对新兔子,然后死去。 注:在第0个月,有0对兔子。第 1 个月,有 1 对兔子
我编写了一个程序,通过对字母使用 switch 命令将十进制字符串转换为十六进制,但是如果我使用 char,该程序无法正常工作!没有 switch 我无法处理 9 以上的数字。我希望你能理解我,因为我
我是 C++ 新手(虽然我有一些 C 语言经验)和 MySQL,我正在尝试制作一个从 MySQL 读取数据库的程序,我一直在关注这个 tutorial但当我尝试“构建”解决方案时出现错误。 (我正在使
仍然是一个初学者,只是尝试使用 swift 中的一些基本函数。 有人能告诉我这段代码有什么问题吗? import UIKit var guessInt: Int var randomNum = arc
我正在用 C++11 编写一个函数,它采用 constant1 + constant2 形式的表达式并将它们折叠起来。 constant1 和 constant2 存储在 std::string 中,
我用 C++ 编写了这段代码,使用运算符重载对 2 个矩阵进行加法和乘法运算。当我执行代码时,它会在第 57 行和第 59 行产生错误,非法结构操作(两行都出现相同的错误)。请解释我的错误。提前致谢:
我是 C++ 的初学者,我想编写一个简单的程序来交换字符串中的两个字符。 例如;我们输入这个字符串:“EXAMPLE”,我们给它交换这两个字符:“E”和“A”,输出应该类似于“AXEMPLA”。 我在
我需要以下代码的帮助: 声明 3 个 double 类型变量,每个代表三角形的三个边中的一个。 提示用户为第一面输入一个值,然后 将用户的输入设置为您创建的代表三角形第一条边的变量。 将最后 2 个步
我是一名优秀的程序员,十分优秀!