0

私の理解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;
}
4

2 に答える 2

2

私の理解が正しければ、ここでベクトルは必要ありません。ファイル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;
}

この基本的なソリューションでは、辞書ファイル内のすべての単語が個別の行にあると想定しています。もちろん、必要に応じてこれを変更し、必要に応じて入力検証を追加する必要があります。

それが役に立てば幸い!

于 2012-05-13T08:07:16.420 に答える
1

ここではあなたの問題ではないgetoptと思います.

これを行うには多くの方法がありますが、概念的には次の手順が必要です。

  1. 入力ファイルを読み取り、そこから辞書を作成します。
  2. 入力した単語を辞書で一致させます。

コードスニペット:

#include <fstream>
#include <iostream>
#include <iterator>
#include <string>
#include <set>

int main (int argc, char *argv[])
{
  // Input file stream
  std::ifstream file_in(argv[3]);

  // Iterators to iterate over input file
  std::istream_iterator<std::string> in_begin(file_in), in_end;

  // Create a dictionary of words.
  // Using std::set for this.
  std::set<std::string> dictionary(in_begin, in_end);

  // Word to find in dictionary
  std::string word(argv[2]);

  // See if the word is present in our dictionary
  if(dictionary.find(word) != dictionary.end())
    std::cout << word << " found in " << argv[3] << std::endl;
  else
    std::cout << word << " not found in " << argv[3] << std::endl;
}
于 2012-05-13T08:09:46.607 に答える