gpt4 book ai didi

c++ - 如何在 C++ 中将两个数据集保存在两个单独的 vector 中

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:55:48 25 4
gpt4 key购买 nike

如果我有这个包含两个非零数据集的二维数组,我如何将所有非零值的索引转移到两个分离的 vector 中。一个用于左侧所有非零值的索引,一个用于右侧的那些?

{1,0,0,0,1,0} 
{1,1,0,0,1,1}
{1,0,0,0,0,0}

这是我到目前为止所做的:

我使用了 for 循环,但我觉得它不正确:

for(int i=0;i<width;i++){
for(int j=0; j < height; j++){
if(Maps[i][j] > 0 || Maps[i+1][j] > 0 || Maps[i-1][j] > 0 || Maps[i][j+1] > 0 || Maps[i][j-1] > 0){
row = j / width;
col = j % width;
}
}

我尝试使用 switch-case,但我没有继续使用它,因为它看起来很垃圾!

for(int i=0 ; i<width; i++){
for(int j=0 ; j<height; j++){

switch(){
case (Maps[i][j] > 0):
row = j / width;
col = j % width;
PIndAmp.push_back(std::make_pair(row,col));
break;
case (Maps[i][j] > 0 && Maps[i][j+1] > 0):
for(Maps[i][j] > 0){
row = j / width;
col = j % width;
PIndAmp.push_back(std::make_pair(row,col));
}
for(Maps[i][j+1] > 0){
row = j+1 / width;
col = j % width;
PIndAmp.push_back(std::make_pair(row,col));
}
break;

}
}

提前致谢...

最佳答案

怎么样:

#include <iostream>
#include <string>
#include <vector>
#include <utility>

template<typename F, typename S>
std::ostream& operator<<(std::ostream& os, const std::pair<F, S>& t) {
return os << '(' << t.first << ',' << t.second << ')';
}

template<typename T>
std::ostream& operator<<(std::ostream& os, const std::vector<T>& vec) {
for (auto& el : vec) {
os << el << ' ';
}
return os;
}

int main()
{
constexpr unsigned int width = 6;
constexpr unsigned int height = 3;
const unsigned int array[height][width] = {
{1,0,0,0,1,0},
{1,1,0,0,1,1},
{1,0,0,0,0,0},
};
typedef std::vector<std::pair<unsigned int, unsigned int>> colonies;
colonies left;
colonies right;
for (unsigned int y = 0; y < height; ++y) {
colonies * vector = &left;
for (unsigned int x = 0; x < width; ++x) {
const unsigned int value = array[y][x];
if (value == 0) {
vector = &right;
} else {
vector->push_back(std::make_pair(y, x));
}
}
}
std::cout << "Right: " << std::endl << right << std::endl;
std::cout << "Left: " << std::endl << left << std::endl;
}

输出:

+ g++-4.8 -std=c++11 -O2 -Wall -pedantic -pthread main.cpp
+ ./a.out
Right:
(0,4) (1,4) (1,5)
Left:
(0,0) (1,0) (1,1) (2,0)

可以在线运行here

关于c++ - 如何在 C++ 中将两个数据集保存在两个单独的 vector 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19445240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com