这是要求:每当遇到一个新单词时,程序应该从动态内存中分配一个节点实例来包含该单词及其计数,并将其插入到一个链表中,以便该列表始终是排序的。如果遇到的单词已经存在于列表中,那么该单词的计数应该增加。
我确实到处搜索,正确的解决方案是使用 std::map,但我不想使用它,因为到目前为止我还没有学会。可以使用 List 或 Vector 并创建一个结构或类来操作每个节点吗?
这是我的正确代码
class Node {
string word;
int count;
public:
Node() {
word = "";
count = 1;
}
Node(const Node &other) : word(other.word), count(other.count) {
// copy constructor
}
~Node() {} // Destructor
void printWord() const {
cout << count << " " << word << endl;
}
void loadWord(ifstream &fin) {
fin >> word;
}
void setWord(const string &word) {
this->word = word;
}
const string& getWord() const {
return word;
}
void incrementCount() {
count++;
}
};
void load(list<Node> &nodes, const char *file);
void print(const list<Node> &nodes);
bool isExist(const list<Node> &nodes, const string &word, Node &node);
void error(const string &message, const char *file);
const Node& getNode(const list<Node> &nodes, const string &word);
int main(int argc, char *argv[]) {
list<Node> nodes;
if (argc != 2) {
cout << "Error syntax : require an input file\n";
return 0;
}
load(nodes, argv[1]);
print(nodes);
return 0;
}
void print(const list<Node> &nodes) {
list<Node>::const_iterator itr;
for (itr = nodes.begin(); itr != nodes.end(); itr++) {
itr->printWord();
}
cout << '\n';
}
void load(list<Node> &nodes, const char *file) {
ifstream fin;
Node node;
string temp;
fin.open(file);
if (!fin)
error("Cannot open file ", file); // exit
while (!fin.eof()) {
if (fin.good()) {
fin >> temp;
if (!isExist(nodes, temp, node)) {
node.setWord(temp);
nodes.push_back(node);
} else {
// increase word count here
}
} else if (!fin.eof())
error("Unable to read data from ", file);
}
fin.close();
}
bool isExist(const list<Node> &nodes, const string &word, Node &node) {
list<Node>::const_iterator itr;
for (itr = nodes.begin(); itr != nodes.end(); itr++) {
if(word.compare(itr->getWord()) == 0) {
return true;
}
}
return false;
}
const Node& getNode(const list<Node> &nodes, const string &word) {
list<Node>::const_iterator itr;
for (itr = nodes.begin(); itr != nodes.end(); itr++) {
if(word.compare(itr->getWord()) == 0) {
return *itr;
}
}
return NULL; // This is fail what should I do to return a NULL value when not found
}
void error(const string &message, const char *file) {
cerr << message << file << '\n';
exit(0);
}
代码不起作用,我只是尝试通过应用我的 Java 知识来生成解决问题的解决方案,但在 c++ 中控制对象似乎不同。有人可以检查我的代码并建议我更好的方法吗?
谢谢。