-6
我剛剛完成作業,但最後一節正在殺死我。我已經完成了研究,解決方案是我們在課堂上沒有教過的概念,並且完全凌駕於我的頭上。我需要bubbleSort和結構數組。但是我完全失去了。任何幫助將不勝感激。氣泡排序結構數組
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
#include <algorithm>
struct billingInfo;
void bubbleSort(billingInfo list[], int length);
using namespace std;
int main()
{
// create struct with a field for zip codes and name of recepients that are being imported from text document
struct billingInfo {
int zipCode;
string name;
};
// create array of billingInfo struct
billingInfo recipients[20];
// open text file and test if file opened
ifstream dataFile("NameZip.txt");
if (dataFile.fail())
cout << "Can't open file." << endl;
else cout << "File opened." << endl;
int numElements = 0;
while (dataFile.peek() != EOF) {
dataFile >> recipients[numElements].zipCode;
getline(dataFile, recipients[numElements].name);
cout << recipients[numElements].zipCode << endl;
cout << recipients[numElements].name << endl;
numElements++;
}
system("pause");
return 0;
}
void bubbleSort(billingInfo list[], int length) {
billingInfo temp;
int itterator;
int index;
for (itterator = 1; itterator < length - itterator - length; itterator++) {
for (index = 0; index < length - itterator; index++) {
temp = list[index];
list[index] = list[index + 1];
list[index + 1] = temp;
}
}
enter code here
}
究竟什麼是您所遇到的問題?此外,這不是如何拼寫迭代器 – xaxxon
「_Bubble對結構數組進行排序」 - 「struct」是引用數據類型,因此此類型的變量(對象)沒有可用作參數的原始可比較值進行分類。你將不得不根據struct的成員變量的值來評估'struct'對象。在你的代碼中,唯一的數字值由'int zipCode'保存。你究竟如何排序?是否應該按照郵政編碼的值升序/降序排列? – progyammer
對不起,太模糊了。我將按照字母順序排列字段名稱,排序爲 –