- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 .dat 文件并想从中获取 map
A C D E F G H I K L M N P Q R S T V W Y
A 4 0 -2 -1 -2 0 -2 -1 -1 -1 -1 -2 -1 -1 -1 1 0 0 -3 -2
C 0 9 -3 -4 -2 -3 -3 -1 -3 -1 -1 -3 -3 -3 -3 -1 -1 -1 -2 -2
D -2 -3 6 2 -3 -1 -1 -3 -1 -4 -3 1 -1 0 -2 0 -1 -3 -4 -3
E -1 -4 2 5 -3 -2 0 -3 1 -3 -2 0 -1 2 0 0 -1 -2 -3 -2
F -2 -2 -3 -3 6 -3 -1 0 -3 0 0 -3 -4 -3 -3 -2 -2 -1 1 3
G 0 -3 -1 -2 -3 6 -2 -4 -2 -4 -3 0 -2 -2 -2 0 -2 -3 -2 -3
H -2 -3 -1 0 -1 -2 8 -3 -1 -3 -2 1 -2 0 0 -1 -2 -3 -2 2
I -1 -1 -3 -3 0 -4 -3 4 -3 2 1 -3 -3 -3 -3 -2 -1 3 -3 -1
K -1 -3 -1 1 -3 -2 -1 -3 5 -2 -1 0 -1 1 2 0 -1 -2 -3 -2
L -1 -1 -4 -3 0 -4 -3 2 -2 4 2 -3 -3 -2 -2 -2 -1 1 -2 -1
M -1 -1 -3 -2 0 -3 -2 1 -1 2 5 -2 -2 0 -1 -1 -1 1 -1 -1
N -2 -3 1 0 -3 0 1 -3 0 -3 -2 6 -2 0 0 1 0 -3 -4 -2
P -1 -3 -1 -1 -4 -2 -2 -3 -1 -3 -2 -2 7 -1 -2 -1 -1 -2 -4 -3
Q -1 -3 0 2 -3 -2 0 -3 1 -2 0 0 -1 5 1 0 -1 -2 -2 -1
R -1 -3 -2 0 -3 -2 0 -3 2 -2 -1 0 -2 1 5 -1 -1 -3 -3 -2
S 1 -1 0 0 -2 0 -1 -2 0 -2 -1 1 -1 0 -1 4 1 -2 -3 -2
T 0 -1 -1 -1 -2 -2 -2 -1 -1 -1 -1 0 -1 -1 -1 1 5 0 -2 -2
V 0 -1 -3 -2 -1 -3 -3 3 -2 1 1 -3 -2 -2 -3 -2 0 4 -3 -1
W -3 -2 -4 -3 1 -2 -2 -3 -3 -2 -1 -4 -4 -2 -3 -3 -2 -3 11 2
Y -2 -2 -3 -2 3 -3 2 -1 -2 -1 -1 -2 -3 -1 -2 -2 -2 -1 2 7
但是我在填充 map 时遇到了 for 循环的问题
static void gen_matrix(map<string, int>& mat)
{
const string myfile = "myfile.dat";
vector<string> myChars = { "A", "C", "D", "E", "F", "G", "H", "I", "K", "L", "M", "N", "P", "Q", "R", "S", "T", "V", "W", "Y" };
ifstream f(myfile);
string temporal;
getline(f, temporal); // Ignore first string
while (getline(f, temporal))
{
auto buff(split_string(temporal));
auto prefix = buff[0];
size_t i = 1;
//try 1
// for(auto it = myChars.begin(), end = myChars.end(); it != end; ++it){
// mat[prefix + it] = stoi(buff[i++]);
// }
//try 2
//for(auto& var = 0; myChars){
// mat[prefix + var] = stoi(buff[i++]);
//}
}
}
我想实现的是每个功能
for each (const auto& var in myChars)
{
mat[prefix + var] = stoi(buff[i++]);
}
但是没有成功,如何更改for循环?
最佳答案
由于您还没有显示您的split_string
,如果我理解正确,您可以尝试以下操作:
std::vector<std::string> split(const std::string &s) {
std::stringstream ss(s);
std::string item;
std::vector<std::string> elems;
while (ss >> item) {
elems.push_back(item);
}
return elems;
}
std::string temporal;
std::getline(fin, temporal,'\r'); // You may need this carriage return as delim
std::map<std::string, int> mat;
std::vector<std::string> buff;
while(std::getline(f, temporal,'\r'))
{
buff = split( temporal) ;
for(std::size_t x=1; x < buff.size() ; ++x)
mat[buff[0]+myChars[x-1]] = atoi( buff[x].c_str() );
}
关于c++ - 如何从 dat 文件生成 map<string, int> 矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20930619/
该代码提示用户选择一个 Excel 文件和五个不同的 DAT 文件。 Excel 文件被加载到工作表上,然后应该为每个要导入的 DAT 文件添加新工作表。 Excel 文件正确加载,但程序在第一次尝试
我尝试在 Three.js 项目中使用 dat.gui 来允许打开和关闭场景中各种元素的可见属性。从功能上来说,这工作得很好。然而,我遇到的问题是因为我正在为场景中每个 child 的可见属性创建一个
我正在构建一个折纸模拟器,我希望能够使用 dat.gui slider “折叠”纸张。我还想包括轨道控制。 但是,当我单击 slider 并随后将鼠标移出 dat.gui 窗口时,轨道控件已被触发,导
我基本上试图写入/读取 C 子文件夹中的文件。有问题的文件夹位于 C:/users/me/Test/ 。下面是我的尝试的一个例子。 已包含在内。 DIR *dirPS = opendir("/
我在 MorphTargets 上使用 dat.gui。默认情况下,GUI 将 0 作为最小值,将 1 作为最大值,我希望它们显示为我各自的值,例如:0 为 10,1 为 20。 我该怎么做? 最佳答
#include #include struct stud { int rollno; char name[10]; char add[10]; }; void main() {
1) 我正在开发一个有 2 个 slider 的 dat.GUI 应用程序。我想在另一个更改时重置一个。例如: var FizzyText = function() { this.slider
我正在尝试在代码中使用 DAT.gui 来控制 third.js 上的摄像头 我在 index.html 文件中包含以下内容。 我确保从 build 文件夹获取文件 当我在 my.js 文件中使用以
我有一个二进制文件格式.dat。我想将其转换为 png 或 jpg 格式,我尝试使用 numpy.loadtxt() 对其进行解码以获取数组列表,然后将其保存为 png 或 jpg 格式。但是当我执行
我有一个 Visual Studio 2010 解决方案,一周前两个文件神秘地出现在根解决方案文件夹中,名为 Index.dat 和 Storage.dat。它们的大小分别为 28 字节和 512 字
前几天开始下载了 http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz http://geoli
我的一个网站上有一个文件 GeoIPCity.day。最初的开发人员告诉我这是来自 maxmind.com 的免费文件,我应该每个月更新它。我查看了 maxmind.com 并没有找到具有完全相同名称
我陷入了一个奇怪的境地,我必须创建一个名为 abc.dat 的 .dat 文件,但问题是,当我创建它时,然后在我的 c: 驱动器中,我检查扩展名为 .dat 的文件没有被创建扩展名为 _auto_fi
我有一个很长的 3 列数值数据表。例如,它的一小部分看起来像这样: -5.3986816409999996e+00 8.3394692357616169e-23 2.2891221151890116e
我正在从服务器上提取带有附件的电子邮件,并根据特定条件将它们放入文件夹中。这对于以纯文本编码发送的电子邮件没有问题,但众所周知,如果它们以富文本格式发送,则附件会转换为 winmail.dat 格式。
实例如下: php" id="highlighter_878313"> ?
如下所示: ? 1
嗨,我是新来的,也是 R 的初学者, 我的问题: 如果我在 R 中有多个文件(test1.dat,test2.dat,...)可以使用,我使用此代码读取它们 filelist <- list.file
我尝试使用 dat.GUI 创建多个具有相同名称“ShowCoord”的按钮,这可能吗?我目前拥有的是: for (i = 0; i 注意:这只是一个提示,我无法从您的代码中得出更多结论。
我有以下 df 其中 num, chr, num dat a idat 1 20200101 h 20200101 2 20200113 g 20200113 3 2020021
我是一名优秀的程序员,十分优秀!