我想按名稱排序指向對象的指針數組,但我不知道我是否正確的方式與此。這是到目前爲止我的代碼...排序指針數組到對象
主要
Person *personArray[3]; //pointers to person objects
personArray[0] = new Employee("Bill", 1200);
personArray[1] = new Customer("Steve");
personArray[2] = new Employee("Bill", 1200);
Person *tempArray[3];
string temp1;
for(int i=3-1;i>0;i--)
{
int min = 0;
for(int j=1;j<i;j++)
{
if(*tempArray[j] < *personArray[min])
{
min = j;
}
}
temp1 = tempArray[min]->printname();
tempArray[min] = tempArray[i];
tempArray[i] = temp1;
}
class Person
{
public:
Person(string);
virtual void printname() = 0;
bool operator <(const Person& name1) const;
bool operator ==(const Person& name1) const;
protected:
string name;
};
bool Person::operator <(const Person& name1) const
{
return (this->name < name1.name);
}
bool Person::operator ==(const Person& name1) const
{
return (this->name == name1.name);
}
void Person::printname()
{
cout << "Name: " << name << endl;
}
您允許使用標準庫算法嗎?如果是這樣,請使用帶有自定義謂詞的'std:sort'。 – juanchopanza
我不這麼認爲,我們被告知要查找字符串::比較並使用重載操作符 – Brumbles