簡體   English   中英

按特定順序輸出地圖

[英]Outputting a map in a specific order

希望我能確切解釋發生了什么,但是基本上我在程序讀取的文檔上有單詞圖及其對應的行號。 我可以輸出地圖以及帶有單詞及其行號的所有內容,但是我對如何更改其輸出方式感到困惑。 所以這是代碼:

這是主要的:

#include <iostream>
#include <string>
#include <vector>
#include <set>
#include <algorithm>
#include <fstream>
#include "dictionary.h"
#include "document.h"

using namespace std;

void sentancetoword(string sentance, set<string> words, int lineNum)
{
    dictionary d;
    document doc;
    bool wordCheck;
    string word;
    stringstream ss(sentance);

    while (ss >> word)
    {
        wordCheck = d.findWord(word, words);
        if(!wordCheck)
        {
            doc.missingMap(word, lineNum);
        }
    }
    doc.displayMap();

}

string letterCheck(string sentance)
{
    for(unsigned i = 0; i < sentance.length(); i++)
        {
            if (!isalpha(sentance[i]))
            {
                sentance[i] = ' ';
            }
        }
    return sentance;
}

int main(int argc, char* argv[])
{
    dictionary dic;
    document doc;
    set<string> words;
    set<string>::iterator it;
    string doc_word;
    int lineNum = 1;
    ifstream in;
    in.open(argv[1]);
    string word;

    while (in >> word)
    {
        transform(word.begin(), word.end(), word.begin(), ::tolower);
        words.insert(word);
    }

    in.close();

    //dic.makeSet(words);

    ifstream in2;
    in2.open(argv[2]);
    while (getline(in2, doc_word))
    {
        transform(doc_word.begin(), doc_word.end(), doc_word.begin(), ::tolower);
        doc_word = letterCheck(doc_word);
        sentancetoword(doc_word, words, lineNum);
        lineNum++;

    }

    in2.close();

    system("pause");
    return 0;

}


#include "document.h"


document::document(void){}
document::~document(void){}

void document::missingMap(string word, int lineNum)
{
    misspelled[word].push_back(lineNum);        
}
void document::displayMap()
{
    for (map<string, vector<int>>::iterator i = misspelled.begin(); i != misspelled.end(); i++)
    {
        cout << i->first << ": ";
        for (vector<int>::iterator j = i->second.begin(); j != i->second.end(); j++)
        {
            cout << *j << endl;
        }
    }



}

因此最后一個函數正在執行地圖的輸出,其輸出如下:

debugging: 1
process: 2
removing: 2
programming: 3
process: 4
putting: 4

但我需要它輸出像這樣:

debugging: 1
process: 2 4
programming: 3
putting: 4
removing: 2

我在代碼中有做錯什么嗎?還是我需要添加排序功能以按單詞對它進行排序? 老實說,我迷路了,不知道從這里到哪里只能輸出一個單詞,然后輸出出現的行號。 如果有人可以提供幫助,那就太好了,如果需要更多信息,我很樂意將其添加到問題中! 謝謝!

您的輸出沒有意義,盡管我認為您會這樣做:

cout << i->first << ": ";
for (vector<int>::iterator j = i->second.begin(); j != i->second.end(); j++)
{
    cout << *j << " ";
}
cout << "\n"; //endl is okay, but I prefer only for I really do need to flush the stream

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM