- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我只想说我对这一切都不陌生,所以请多多包涵。因此,对于我们的任务,我们必须实现我们自己的二叉搜索树。我们将使用此 BST 创建 ExtPersonType 类型对象的地址簿(具有不同的成员等)。
在大多数情况下,一切看起来都不错并且可以正常工作,但是对于我来说,我无法弄清楚这三个功能。我必须通过在树中搜索姓氏、月份和状态来显示该对象的所有信息。
它们都是非常相似的函数,因此我不会一一赘述。如果有人能为其中之一指出正确的方向,我相信我能弄清楚。提前感谢您的帮助!
我剥离了很多代码以达到高点。如果您希望我发布更多内容,请告诉我
BinarySearchTree
template<class T>
class BinarySearchTree
{
private:
Node<T>* root;
public:
BinarySearchTree() { root = NULL; }
void displayInfo(T value);
bool search(T value);
template <class T>
bool BinarySearchTree<T>::search(T value)
{
Node<T>* tree = root;
while (tree)
{
if (tree->value)
{
return true;
}
else if (tree->value > value)
{
tree = tree->left;
}
else
{
tree = tree->right;
}
}
return false;
}
template <class T>
void BinarySearchTree<T>::displayInfo(T value)
{
Node<T>* tree = root;
while (tree)
{
if (tree->value)
{
cout << tree->value;//I have overloaded << here to display objects (works btw)
}
else if (tree->value > value)
{
tree = tree->left;
}
else
{
tree = tree->right;
}
}
}
地址簿.cpp。
AddressBook<ExtPersonType> addressBook;
ExtPersonType person;
int main()
{
//reads input from file
person.setInfo(firstName, lastName,
month, day, year,
street, city, state, zipCode,
phoneNumber, status);
addressBook.insert(person);
}
}
void optionThree() //The crux of my problem
{
string lastName;
cout << "Enter the last name of the person: ";
cin >> lastName;
addressBook.printInfoOf(lastName);
}
地址簿.h
template <class elemType>
class AddressBook : public BinarySearchTree<elemType>
{
public:
AddressBook();
void printInfoOf(string);
void printNameInTheMonth(int);
void printNamesWithStatus(string);
};
// Print - Info Of
template <class elemType>
void AddressBook<elemType>::printInfoOf(string lastName)
{
if(person.getLastName() == (last))
BinarySearchTree::displayInfo(person);
else
cout << "Not found" << endl;
}
如您所见,我不知道自己在做什么。再次感谢您!
error C2451: conditional expression of type 'ExtPersonType' is illegal No user-defined-conversion operator available that can perform this conversion, >or the operator cannot be called documents\visual studio 2010\projects\programming4\binarysearchtree.h(234): >while compiling class template member function 'void >BinarySearchTree::displayInfo(T)' with [ T=ExtPersonType ]
最佳答案
在你的BinarySearchTree::displayInfo
方法你有以下行:
else if (tree->value > value)
这一行在两个 ExtPersonType 类型的对象之间进行大于比较,但是没有默认值 operator>
用于自定义类。
如果你还没有实现类似的东西
bool operator>(const ExtPersonType & other) const { ... }
在你的ExtPersonType
类,那就是你的问题了。
不要忘记,如果你实现了operator>
, 你还应该实现 operator<
, operator>=
, 和 operator<=
.
一般来说,应该考虑operator>
和 operator<=
作为相关对,和operator<
和 operator>=
作为另一个相关对,并将每对中的一个实现为另一个的否定,例如:
bool operator>(const ExtPersonType & other) const {
return !(*this <= other);
}
bool operator<=(const ExtPersonType & other) const {
// Do your actual comparison here
}
如果您需要更改两个 ExtPersonType
的方式,以这种方式进行比较可以减少以后出错的机会。对象相互关联。
关于c++ - 在二叉搜索树中检索对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29931650/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!