- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我下面的程序读取一个文本文件 (data.txt),使用 upper_bound() 来比较一个值,但它没有给出正确的值。我不明白为什么输出总是最后一个值。
#include <iostream>
#include <vector>
#include <algorithm>
int main(int argc, char* argv[])
{
FILE* textFile;
std::string filename;
std::vector <unsigned> dataVector;
unsigned d;
// Open file
filename = "data.txt";
if( (textFile = fopen(filename.c_str(), "r")) == NULL ) {
std::cout << "Cannot open file "<< filename.c_str() << std::endl;
exit(1);
}
// Read data
while ( fscanf(textFile, "%d", &d) > 0 ){
dataVector.push_back(d);
}
fseek(textFile, 1, SEEK_CUR);
std::cout<<"dataVector size: "<< dataVector.size() << std::endl;
// ********************* iterator ******************************** //
unsigned val;
unsigned x;
std::vector<unsigned>::iterator it;
std::vector<unsigned>::iterator begin;
std::vector<unsigned>::iterator end;
val = 41;
begin = dataVector.begin();
end = dataVector.end();
it = upper_bound (begin, end, val); // Problem here: it = end
x = int(it - begin); // output: 424 is wrong, supposed to be 64!!
return 0;
}
data.txt(这个不行)
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 8 14 22 32 44 58 75 93 113 134 157 183 211 240 271 304 339 376 415 455 497 539 581 623 665 708 752 797 843 890 938 988 1040 1093 1148 1204 1262 1321 1381 1442 1504 1568 1634 1701 1770 1840 1911 1983 2056 2132 2209 2287 2365 2433 2498 2558 2611 2658 2705 2753 2801 2849 2898 2947 2996 3046 3095 3145 3195 3246 3296 3348 3399 3451 3504 3556 3607 3658 3708 3758 3808 3859 3911 3960 4011 4060 4106 4150 4194 4237 4277 4319 4362 4403 4441 4480 4520 4557 4595 4629 4657 4687 4715 4742 4769 4795 4819 4844 4867 4888 4906 4921 4936 4950 4958 4963 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
data_2.txt(有效)
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 14 31 51 73 102 141 182 225 279 335 393 453 516 582 651 724 801 880 967 1054 1140 1228 1318 1409 1501 1597 1693 1791 1890 2001 2117 2251 2393 2535 2680 2827 2973 3121 3272 3425 3581 3740 3896 4054 4212 4371 4528 4688 4850 5011 5176 5341 5504 5662 5813 5961 6111 6264 6416 6569 6723 6881 7041 7200 7356 7509 7654 7796 7937 8073 8207 8340 8470 8598 8724 8850 8975 9098 9219 9339 9458 9574 9688 9802 9915 10027 10139 10251 10363 10474 10583 10693 10804 10914 11022 11129 11233 11336 11439 11541 11643 11748 11855 11965 12076 12188 12313 12440 12572 12706 12860 13024 13190 13359 13530 13702 13876 14052 14229 14429 14631 14839 15051 15268 15487 15707 15929 16155 16385 16617 16852 17091 17336 17584 17835 18090 18350 18615 18882 19154 19426 19702 19982 20264 20555 20847 21140 21436 21733 22031 22332 22634 22938 23243 23550 23858 24173 24489 24807 25128 25450 25773 26096 26419 26742 27065 27388 27711 28034 28357 28679 29001 29323 29644 29965 30286 30607 30925 31236 31544 31851 32149 32442 32725 33000 33259 33508 33732 33956 34182 34407 34632 34857 35081 35301 35507 35706 35894 36076 36254 36429 36602 36772 36940 37100 37257 37400 37532 37665 37797 37928 38059 38189 38318 38444 38571 38699 38827 38955 39083 39212 39342 39472 39602 39732 39862 39993 40124 40255 40386 40516 40646 40775 40904 41033 41163 41293 41423 41553 41682 41812 41942 42072 42202 42333 42464 42595 42726 42856 42988 43123 43259 43395 43531 43667 43803 43939 44075 44211 44346 44483 44621 44760 44900 45042 45184 45328 45472 45616 45759 45902 46045 46188 46332 46476 46621 46766 46911 47058 47205 47353 47502 47652 47803 47954 48106 48259 48413 48567 48721 48875 49029 49183 49337 49489 49641 49792 49942 50092 50243 50397 50553 50711 50869 51027 51186 51345 51504 51664 51824 51984 52144 52305 52465 52626 52787 52948 53109 53271 53433 53595 53757 53921 54085 54249 54413 54578 54742 54907 55072 55237 55402 55567 55732 55898 56065 56232 56400 56569 56738 56907 57074 57242 57410 57579 57749 57919 58088 58257 58426 58593 58759 58925 59090 59255 59420 59585 59749 59913 60076 60240 60403 60566 60728 60890 61051 61212 61373 61534 61695 0 0 0 0
最佳答案
搜索可以在一行中完成。
auto val = 41u;
auto it = std::find_if(dataVector.begin(), dataVector.end(),
[val](unsigned i) { return i > val; });
std::cout << (it - dataVector.begin()) << std::endl;
如果您重复搜索相同的范围,以至于二分搜索的复杂性降低实际上很重要,并且范围被排序直到尾随零,那么我们可以去搜索排序的子范围结束的位置(和尾随零开始),并在初始排序的子范围上使用 upper_bound
。
此外,fscanf
调用会导致未定义的行为,因为您将 %d
与 unsigned
一起使用。您需要 %u
。或者,摆脱 C 风格的困惑并使用流迭代器读入 vector :
std::ifstream ifs(filename);
if( !ifs ) {
std::cout << "Cannot open file "<< filename << std::endl;
return 1;
}
std::vector<unsigned> dataVector(std::istream_iterator<unsigned>(ifs), {});
Demo .
关于c++ - upper_bound() 给出了错误的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30795441/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!