如何在C ++上按字母顺序排列列表

时间:2015-04-23 19:30:52

标签: c++ alphabetical-sort alphabetized

我在最终项目的代码上遇到了一些麻烦。我一直在寻找,我很难过,所以我想我会在这里问。我需要确保当本电话簿中列出所有名称时,它们将按字母顺序排列,但到目前为止,我不确定如何做到这一点。这是我目前的程序!谢谢!

#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>

using namespace std;

struct Contact {
   string name, number, notes;
};

Contact contactList[100];
int rec_num = 0;
int num_entries;

string toUpper (string S) {
   for (int i= 0; i < S.length(); i++)
      S[i] = toupper(S[i]);
   return S;
}

void ReadFile () {
   string S;
   fstream input("PhoneData.txt");
   while (!input.eof() && !input.fail()){
      input >> contactList[rec_num].name >> contactList[rec_num].number;
      getline(input, S);
      contactList[rec_num].notes = S;
      rec_num++;
   }
   cout << "Book read." << endl;
   num_entries = rec_num;
   input.close();
   return;
}

// stores phonebook for future runs of the program
void StoreFile () {
   fstream F ("PhoneData.txt");
   rec_num = 0;

   while (rec_num < num_entries){
      F << contactList[rec_num].name << " " << contactList[rec_num].number << " " << contactList[rec_num].notes  <<  " " << endl;
      rec_num++;
   }
   cout << "Phonebook stored." << endl;
   return;
}

// adds contact
void add_name(string name, string number, string notes){
   contactList[num_entries].name = name;
   contactList[num_entries].number = number;
   contactList[num_entries].notes = notes;
   num_entries++;
   return;
}

// finds contact
void retrieve_name(string name){
   for (int i = 0; i < num_entries; i++){
      if (toUpper(contactList[i].name) == toUpper(name)) {
         cout << "Phone Number: " << contactList[i].number << endl << "Notes: " << contactList[i].notes << endl;
         return;
      }
   }
   cout << "Name not found" << endl;
   return;
}

// updates contact info
void update_name(string name){
   string new_number;
   string new_notes;
   cout<<"New Phone Number"<<endl;
   cin>> new_number;
   cout<<"New Notes"<<endl;
   cin>> new_notes;
   for (int i = 0; i < num_entries; i++){
      if (toUpper(contactList[i].name) == toUpper(name)) {
         contactList[i].number = new_number;
         contactList[i].notes = new_notes;
         return;
      }
   }
}

// deletes contact
void delete_name(string name){
   int INDEX=0;
   for (int i = 0; i < num_entries; i++){
      if (toUpper(contactList[i].name) == toUpper(name)) {
         INDEX=i;
         for ( int j=INDEX; j < num_entries; j++ ){
            contactList[j].name = contactList[j+1].name;
            contactList[j].number = contactList[j+1].number;
            contactList[j].notes = contactList[j+1].notes;
         }
      }
   }
   return;
}

void listAllContacts() {
   int i = 0;
   while (i < num_entries) {
      cout << "-- " << contactList[i].name << " " << contactList[i].number << endl << "-- " << contactList[i].notes << endl << endl;
      i++;
   }
}

int main(){
   string name, number, notes;
   string FileName;
   char command;
   FileName = "PhoneData.txt";
   ReadFile ();
   cout << "Use \"e\" for enter, \"f\" for find, \"l\" for list, \"d\" for delete, \"u\" for update, \"s\" for send message, \"q\" to quit." << endl << "Command: ";
   cin >> command;
   while (command != 'q'){
      switch (command){
         case 'e': cin >> name; cout << "Enter Number: ";
                   cin >> number; cout << "Enter Notes: ";
                   cin.ignore(); getline(cin, notes);
                   add_name(name, number, notes); break;
         case 'f': cin >> name; retrieve_name(name); break;
         case 'l':
                   listAllContacts(); break;
         case 'u': cin>> name; update_name (name);break;
         case 'd' : cin>> name; delete_name (name); break;
      }
      cout << "\nCommand: "; cin >> command;
   }
   StoreFile();
   cout << "All set !";
   return 0;
}

1 个答案:

答案 0 :(得分:0)

鉴于

Contact contactList[100];
int num_entries;

您可以使用std::sort对联系人列表进行排序。 std::sort有两种形式。在第一种形式中,您可以使用:

std::sort(contanctList, contactList+num_entries);

如果您为operator<个对象定义Contact

在第二种形式中,您可以使用:

std::sort(contanctList, contactList+num_entries, myCompare);

如果您将myCompare定义为可以比较两个Contact对象的可调用对象。

要使用第一个表单,请将Contact更改为:

struct Contact {
   string name, number, notes;
   bool operator<(Contact const& rhs) const
   {
      return (this->name < rhs.name);
   }
};

如果要将名称比较区分大小写,请将两个名称转换为大写或小写,然后将它们进行比较。