简体   繁体   English

将唯一数据推入向量

[英]Pushing unique data into vector

I have the following data:我有以下数据:

FolioA Name1 100
FolioA Name2 110
FolioA Name3 100
FolioB Name1 100
FolioB Name3 106
FolioC Name1 108
FolioC Name2 102
FolioC Name3 110

I want to only insert unique names(ie Name1, Name2 and Name3, each once) into我只想插入唯一的名称(即 Name1、Name2 和 Name3,每个一次)到

std::vector<std::string> name;

as I iterate through the data.当我遍历数据时。

So, I have the following code where I have stored the data in a map called test:所以,我有以下代码,我将数据存储在名为 test 的地图中:

std::map<std::string, std::map<std::string, double> >test;
std::map<std::string, std::map<std::string, double > >::iterator it1 = test.begin(), end1 = test.end();
    while (it1 !=end1) {
        std::map<std::string, double>::iterator it2 = it1->second.begin(), end2=it1->second.end();
        **name.push_back(it2->first);**
        ++it2;
    }
    ++it1;
}

But, currently by pushing the data into name the way I am has 3 instances of Name1, 2 of Name2, and 3 of Name3, which is expected from my code.但是,目前通过将数据推送到 name 中,我有 3 个 Name1 实例、2 个 Name2 实例和 3 个 Name3 实例,这是我的代码所期望的。 How do I fix it to only have unique names.如何将其修复为只有唯一名称。

Since you want to keep the first instance for a given name, you will have to perform a name lookup at some point.由于您想保留给定名称的第一个实例,因此您必须在某个时候执行名称查找。 A simple algorithm involving only your vector would be to can check if the the entry already exists using std::find一个仅涉及您的向量的简单算法是可以使用std::find检查条目是否已存在

std::vector<std::string> name;

....
if (std::find(name.begin(), name.end(), someName) == name.end()) {
  // someName not in name, add it
  name.push_back(someName);
}

But here you are performing a search each time you want to insert an element, and this (by itself) is up to O(N) complexity, giving O(N*N) for the whole algorithm.但是在这里,每次要插入元素时都会执行搜索,而这(本身O(N)复杂度高达O(N) ,整个算法的复杂度为O(N*N) So you could optimize by using an intermediary container with fast look up, such as an std::set as suggested by @Chad and which has O(logN) complexity for look-up, giving O(N*logN) overall, or a hash container such as C++11's std::unordered_set , which has close to constant time look-up, giving ~O(N) overall complexity.因此,您可以通过使用具有快速查找功能的中间容器进行优化,例如 @Chad 建议的std::set并且具有O(logN)查找复杂度,总体上给出O(N*logN) ,或散列容器,例如 C++11 的std::unordered_set ,它具有接近恒定时间的查找,提供 ~O(N) 整体复杂度。

#include <unordered_set>

std::unordered_set<std::string> name_set;
....

// still need to search, since you want to keep 
// the first instance of each name, and not the last.
// But unordered_set performs the look-up at insertion,
// only inserting if someName not already in the set
name_set.insert(someName);

and then, following @Chad's example,然后,按照@Chad 的例子,

std::vector<std::string> name(names_set.begin(), name_set.end());

If you don't have C++11, hash map alternatives are boost::hash_map and tr1::hash_map .如果您没有 C++11,哈希映射替代方案是boost::hash_maptr1::hash_map

You asked for sample code, so here's how I would have done it:您要求提供示例代码,所以这是我的做法:

std::set<std::string> unique_names;

// ...
while (it1 !=end1)
{
    // ...
    // **name.push_back(it2->first);**
    unique_names.insert(it2->first);
}

std::vector<std::string> name(unique_names.begin(), unique_names.end());

如果您不关心要输入到数据结构中的哪个实例, std::set将满足您的目的

Maybe you should use another map istead of a vector to have unique names.也许您应该使用另一个地图而不是矢量来获得唯一的名称。

std::map < std::string, double > name; std::map < std::string, double > name;

list has the ability to .sort() and then .unique(), which will provide you with . list 具有 .sort() 和 .unique() 的能力,这将为您提供 .

you can iterate over it with an iterator and initialize it with initializer_list.您可以使用迭代器对其进行迭代并使用 initializer_list 对其进行初始化。

that data looks actually more like a struct to me:这些数据对我来说实际上更像是一个结构:

#include <iterator>
#include <list>
#include <string>
#include <fstream>

typedef struct NODE_S {
    string name1, name2;
    int n;
} NODE_S NODE;

bool compare_NODE (NODE first, NODE second)
{
    unsigned int i=0;
    if (first.name1 < second.name1) {
        return true;
    } else if (first.name2 < second.name2) {
        return true;
    } else if (first.n < second.n) {
        return true;
    } else { return false;}
}


bool readfile(list<NODE>& ln, string filepath) {
    std::ifstream filein;
    NODE n;
    filein.open(filepath.c_str(), std::iofstream::in);
    if (!filein.good()) {
        filein.close();
        std::cerr << "ERROR: unable to open file \"" << filepath << "\" or file is zero-length." << std::endl;
        return false;
    }
    do {
        filein >> n.name1 >> n.name2 >> n.name3 >> std::skipws;
        ln.push_back(n);
        ln.sort(compare_NODE);
        ln.unique();
        //add node to list

    } while (!filein.good()); //can use .eof here, but if bad disk blocks...
    filein.close();
    return true;
}


int main(int argc, char * argv[], char * envp[]) {
    string filepath="somefile.txt";
    if (!readfile(filepath)) {
        return 1;
    }
    list<NODE>::iterator lni;
    for (lni = ln.begin(); lni != ln.end(); lni++) {
        std::cout<<lni->name1<<' '<<lni->name2<<' '<<lni->n<<std::endl;
    }
    return 0;
}

http://www.cplusplus.com/reference/stl/list/sort/ http://www.cplusplus.com/reference/stl/list/sort/

http://www.cplusplus.com/reference/stl/list/unique/ http://www.cplusplus.com/reference/stl/list/unique/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM