Объедините значения двух карт на основе ключей - PullRequest
3 голосов
/ 25 июля 2011

Это своего рода последнее средство ..

Итак, у меня есть две карты.

typedef std::map <string, vector<float> > Dict;
typedef std::map <string, string> Dict1;

Содержимое первой карты выглядит так: Dict = {A: -3.1, 2.1, 1.1}; {B: -4,5, 5,6, 7,2} ...

Строки со второй карты совпадают с ключами из первой. Dict1 = {A: B}; ...

Мне нужно создать что-то вроде:

Dict2 = {-3.1, 2.1, 1.1:  -4.5, 5.6, 7.2}... 

или два помещают их в два вектора, но с возможностью восстановления структуры Dict1 .. Технически это координаты для некоторых точек.

На самом деле я пошел вторым путем и попытался создать два вектора, а затем сопоставить их, но, очевидно, я допустил некоторую ошибку ... Вот что у меня есть:

typedef std::map <string, vector<float> > Dict;
typedef std::map <string, string> Dict1;

typedef std::vector<float> V1;

V1 v1;
V1 v2;

Dict d;
Dict d1;


//Here is the code, I know, oh well...



for( map<string, vector<float> >::iterator iter0 = d.begin(); iter0 != d.end(); ++iter0 ) {

    for( map<string, string >::iterator iter1 = d1.begin(); iter1 != d1.end(); ++iter1 ) {

        vector <float> tempVal0 = (*iter0).second;
        string tempKey0 = (*iter0).first;

        string tempVal1 = (*iter1).second; 
        string tempKey1 = (*iter1).first;

        size_t comp1 = tempKey0.compare(tempKey1);
        if(comp1 == 0 ){
            for (unsigned i = 2; i < tempVal0.size(); i++) {
            v1.push_back(tempVal0[i-2]);
            v1.push_back(tempVal0[i-1]);
            v1.push_back(tempVal0[i]);

                for( map<string, vector<float> >::iterator iter00 = d.begin(); iter00 != d.end(); ++iter00 ) {

                    for( map<string, string >::iterator iter11 = d1.begin(); iter11 != d1.end(); ++iter11 ) {
                        vector <float> tempVal00 = (*iter00).second;
                        string tempKey00 = (*iter00).first;

                        string tempVal11 = (*iter11).second; 
                        string tempKey11 = (*iter11).first;

                        size_t comp2 = tempVal1.compare(tempKey00);
                        if (comp2 == 0){
                            for (unsigned i = 2; i < tempVal00.size(); i++) {
                                v2.push_back(tempVal00[i-2]);
                                v2.push_back(tempVal00[i-1]);
                                v2.push_back(tempVal00[i]);
                            }
                        }

                    }   
                    }     

            }
        }


    }
}

Что мне не хватает ??

1 Ответ

3 голосов
/ 25 июля 2011
std::map<string, vector<float>> d;
std::map<string, string> d1;
std::map<vector<float>, vector<float>> d2;

// Fill the maps here

for(std::map<string, string>::iterator i = d1.begin(); i != d1.end(); i++) {
    d2[d[i->first]] = d[i->second];
}

Это довольно тривиальная операция с базовыми рабочими знаниями стандартной библиотеки C ++. Как вы собираетесь сравнивать вектор чисел с плавающей точкой, я не совсем уверен. В C ++ по умолчанию нет компаратора для вектора чисел с плавающей запятой.

...