我正在尝试创建一个程序,该程序接受文件的输入,然后将单词存储到向量中,到目前为止,我已经让它与 std::vector 类一起使用,尽管我想尝试自己制作,以利用。但是我遇到了很多错误,不知道如何解决它们。
错误信息:
main.cpp:43: error: expected constructor, destructor, or type conversion before "Vector"
main.cpp:43: error: expected `;' before "Vector"
main.cpp:47: error: expected constructor, destructor, or type conversion before "Vector"
main.cpp:47: error: expected `;' before "Vector"
main.cpp:55: error: expected constructor, destructor, or type conversion before "Vector"
main.cpp:55: error: expected `;' before "Vector"
main.cpp: In function `int main(int, char**)':
main.cpp:115: error: expected primary-expression before "auto"
main.cpp:115: error: expected `;' before "auto"
main.cpp:116: error: expected primary-expression before "auto"
main.cpp:118: error: no matching function for call to `std::vector<WordInfo, std::allocator<WordInfo> >::push_back(std::string&, int)'
我的代码:
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct WordInfo {
string text;
int count;
};
template <class T> class Vector {
public:
typedef T* iterator;
Vector();
iterator begin();
iterator end();
int size();
iterator insert(iterator position, const T& item);
void alloc_new();
private:
T items[1000];
int used;
};
template <class T> Vector<T>::Vector() {
used = 0;
}
template <class T> Vector<T>::iterator Vector<T>::begin() {
return items;
}
template <class T> Vector<T>::iterator Vector<T>::end() {
return items + used;
}
template <class T> int Vector<T>::size() {
return used;
}
template <class T> Vector<T>::iterator Vector<T>::insert(iterator position, const T& item) {
if (used + 1 > items) {
alloc_new();
}
items[position] = item;
used = +1;
}
template <class T> void Vector<T>::alloc_new() {
items = used * 2;
T tmp[] = items;
for (int i = 0; i < used; i++) {
tmp[i] = items[i];
}
delete items;
items = tmp;
}
/*
*
*/
int main(int argc, char** argv) {
enum {
total, unique, individual
} mode = total;
for (int c; (c = getopt(argc, argv, "tu")) != -1;) {
switch (c) {
case 't': mode = total;
break;
case 'u': mode = unique;
break;
case 'i': mode = individual;
break;
}
}
argc -= optind;
argv += optind;
string word;
vector<string> list;
int count = 0;
int count2 = 0;
while (cin >> word) {
count += 1;
if (find(list.begin(), list.end(), word) != list.end()) {
list.push_back(word);
}
}
switch (mode) {
case total: cout << "Total " << count << endl;
break;
case unique: cout << "Unique " << count2 << endl;
break;
case individual:
vector<WordInfo> list;
while (cin >> word) {
if (find(list.begin(), list.end(), word) != list.end()) {
auto = find(list.begin(), list.end(), word);
list.at(auto).count++;
} else {
list.push_back(word, 1);
}
}
break;
}
return 0;
}
任何帮助将不胜感激,在此先感谢您!