gpt4 book ai didi

c++ - 单词比较 - Vectors/Getopt

转载 作者:行者123 更新时间:2023-11-28 00:56:59 26 4
gpt4 key购买 nike

我对getopt 的理解非常有限。但是我确实意识到 argv[0] 是 exe 文件,argv[1] 是选项,argv[2] 是单词进行比较,argv[3] 是我要搜索的字典或文档(文件 .txt)。

我正在尝试设置一个指向字典的指针,然后遍历它以查看是否与文本文件的 argv[2](输入词)匹配,如果有匹配输出 argv[2] 字。以下是我当前的错误代码:

main.cpp:61: error: no match for 'operator==' in 'list == *(argv + 12u)'
main.cpp:64: error: no match for 'operator*' in '*list'

如有任何帮助,我们将不胜感激。

#include <cstdlib>
#include <unistd.h>
#include <vector>
#include <iostream>
#include <string>
#include <iterator>
using namespace std;

int main(int argc, char** argv) {
enum {
WHOLE, PREFIX, SUFFIX, ANYWHERE, EMBEDDED
} mode = WHOLE;
bool jumble = false;
bool ignore_case = false;
bool invert = false;
string length = "0,0";
int c;
string input;
vector <string> list;
vector <string>::iterator i;

while ((c = getopt(argc, argv, ":wpsaejivn:")) != -1) {
switch (c) {
case 'w': mode = WHOLE;
break;
case 'p': mode = PREFIX;
break;
case 's': mode = SUFFIX;
break;
case 'a': mode = ANYWHERE;
break;
case 'e': mode = EMBEDDED;
break;
case 'j': jumble = true;
break;
case 'i': ignore_case = true;
break;
case 'v': invert = true;
break;
case 'n': length = optarg;
break;
default: WHOLE;
break;
}
}
argc -= optind;
argv += optind;

switch (mode) {
case WHOLE:
while(argc != -1){
list == argv[3];
for(i == list.begin(); i != list.end(); i++)
if(argv[1] == argv[3]){
cout << *list << endl;
}else cout << "Did not work again" << endl;
}
}
return 0;
}

最佳答案

如果我没理解错的话,这里不需要 vector 。您需要读取文件 argv[3],逐字解析并在找到等于 argv[2] 的字时停止。

我想象你想要这样的东西:

#include <string>
#include <fstream>
#include <ostream>

using namespace std;

int main(int argc, char** argv)
{
// The part where you parse the input and validate it
// ...

// Read the dictionary specified in argv[3] and compare it with argv[2] line by line
ifstream input_file(argv[3]);
string match_string(argv[2]);
string current_string;
bool found = false;
while(getline(input_file, current_string) && !found)
found = (current_string.compare(match_string) == 0);

// Check the result
if (found)
cout << "Found " << match_string << " in " << argv[3] << endl;
else
cout << "Did not work again" << endl;

return 0;
}

在这个基本解决方案中,我假设字典文件中的每个单词都在单独的一行中。当然你需要根据你的需要修改它,并根据需要添加更多的输入验证。

希望对您有所帮助!

关于c++ - 单词比较 - Vectors/Getopt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10569617/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com