向量重复值

时间:2016-07-22 19:46:16

标签: c++ c++11 vector stl language-design

首先是怜悯,我是C ++的初学者。

我为我的翻译编写了这段代码:从源读取一行并将行拆分为单词。我使用矢量对象来存储单词。这是代码,Source是文件描述符(ifstream):

#include <iostream>
#include <fstream>
#include <string>
#include <vector>

using namespace std;

typedef unsigned int UIntegerP;
#define V(X, Y, Z) X##Y##Z
#define Version V(0, 0, 1)

#define Free 0x0

int main(int ACount, char *Arguments[]){
    if(ACount < 2){
        cout << "Venus Interpreter - Engine V: " << Version << " - Interprate: -I <Source> \n";
    }else{
        if(Arguments[1][0] == '-' && Arguments[1][1] == 'I'){
            if(ACount < 3){
                cout << "Error: No input files \n";
            }else if(ACount > 3){
                cout << "Error: Too much arguments \n";
            }else{
                ifstream Source(Arguments[2]);
                if(Source.good()){  
#                   define __TEST__ 1

                    string Line; 
                    vector<string> Words; 
                    string Word; 

                    while(getline(Source, Line)){ 
                        for(unsigned long Index = 0; Index <= Line.length(); Index++){
                            if(Line[Index] == ' ' or Line[Index] == '\0'){
                                Words.push_back(Word); //Inject the Word to Words
                                Word.clear();
                            } else {
                                Word += Line[Index];
                            }
                        }

#                       if __TEST__
                           cout << Words[0] << "\n";
#                       endif

                        //Interpration starts here
                        Words.clear();  
                    }
                }else{
                    cout << "Error: File does not exist \n";
                }
                Source.close();
            }
        }else{
            cout << "Error: Unknown operand \n";
        }
    }
    return 0;
}

这是由程序解释的文件:

10 * 20 / 5 * 10
Asparagas

这是输出:

10
10

就像你在这里看到的那样,价值是重复的。有什么问题?

1 个答案:

答案 0 :(得分:3)

问题在于,对于行10 * 20 / 5 * 10,您将单词插入到向量中,然后打印出其第一个元素

#if __TEST__
    cout << Words[0] << "\n";
#endif

然后(我假设)认为您使用以下行清除向量

Words.empty();  

然而,这并没有清除向量,它返回一个布尔值,显示向量是否为空(documentation on vector.empty()

要清除矢量,您应该使用vector.clear()

第二次围绕你的循环,当你处理asparagus时,你打印出矢量中的第一个元素10,因为它仍然在矢量中从第一个getline

开始