The istream-iterator tag has no wiki summary.
0
votes
1answer
33 views
Distance between istream_iterators
I am trying to count the amount of elements read by std::cin by using std::distance for the constructor argument of a vector in advance, like so:
// Gives correct amount, but now can't use to put ...
0
votes
1answer
32 views
std::istream_iterator, memory consumption
I try to iterate through a text file using iterators:
1) std::istream_iterator<MyData> itRecordStreamBegin(fileStream);
2) std::istream_iterator<MyData> itRecordStreamEnd;
After the ...
0
votes
1answer
51 views
What's wrong with this iterator declaration
I have a method in my class, here it is:
void TextQuery::build_word_map()
{
word_map = new map<string,loc*,less<string>,allocator<string> >;
typedef ...
5
votes
3answers
173 views
How can i read a 0xFF in a file with libc++ istream_iterator?
Consider the following example code:
#include <iostream>
using namespace std;
int main()
{
istreambuf_iterator<char> eos;
istreambuf_iterator<char> iit(cin.rdbuf());
int i;
...
1
vote
2answers
112 views
Implement reading from stream via copy
I have a class which represents a character sequence and I’d like to implement an operator >> for it. My implementation currently looks like this:
inline std::istream& operator ...
1
vote
3answers
131 views
Initialization of istream_iterator causes ifstream.fail() to be set
I'm attempting to import a large amount of data from a file into a boost::dynamic_bitset. To accomplish this, I was hoping to use an istream_iterator which matches the block size of the dynamic_bitset ...
6
votes
1answer
161 views
Seeking istreambuf_iterator <wchar_t> claifications, reading a complete text file of Unicode characters
In the book “Effective STL” by Scott Meyers, there is a nice example of reading an entire text file into a std::string object:
std::string sData;
/*** Open the file for reading, binary mode ***/
...
-2
votes
1answer
61 views
How to sort a multiset<string> alphabetically? [closed]
Here is a multiset containing a Value and String pair
istream_iterator<string> i(f);
...
2
votes
1answer
78 views
End of stream iterator is configurable?
Please consider the code below:
vector<__int64> vNumbers;
copy(istream_iterator<__int64>(cin), istream_iterator<__int64>(), back_inserter(vNumbers));
If I'll enter 1 23 45 and ...
0
votes
2answers
78 views
istream_iterator to initialize vector
I'm trying to read from a ifstream fin and put it into a vector vec1 using istream_iterators. I've seen these things all over the place:
vector<int> ...
4
votes
3answers
90 views
istream_iterator cin initialization waits for input
I've got this code snippet. The istream_iterator object is only defined and not used, so I expect that it won't do anything and application finish immediately. But when I run application, it will not ...
1
vote
2answers
211 views
Why doesn't the istreambuf_iterator advance work
I was reading Constructing a vector with istream_iterators which is about reading a complete file contents into a vector of chars. While I want a portion of a file to be loaded in to a vector of ...
2
votes
1answer
92 views
Redefine EOF as character string
I'm trying to write a program that gets a sequence of words, put them into a vector and then does things with them. I've found one way that works, which is:
{
vector<string> inputs;
...
8
votes
2answers
275 views
Why doesn't range-for find my overloads of begin and end for std::istream_iterator?
I have code like this
std::ifstream file(filename, std::ios_base::in);
if(file.good())
{
file.imbue(std::locale(std::locale(), new delimeter_tokens()));
for(auto& entry : ...
0
votes
2answers
85 views
Priority_queue and input stream iterator
int main()
{
list<char> letters;
priority_queue<char, vector<char>, less<char>>letters_trans;
cout << "Enter some sentence: " << endl << endl;
...
0
votes
2answers
128 views
istream_iterator behaviour
I have two pieces of code.They work properly when it is used alone in the main().
vector<int> v;
cout << "Enter sequance of integers "<< "(press q to quit) : ";
...
2
votes
2answers
152 views
Strange Error in using template<class InputIterator> string (InputIterator begin, InputIterator end);
Given such a code segment:
#include <iostream>
#include <iterator>
#include <fstream>
#include <string>
using namespace std;
int main(){
ifstream file("1.txt");
string ...
6
votes
1answer
479 views
copy algorithm with ifstream
the following code is not behaving like I would expect. Please help me understand how it works.
#include <algorithm>
#include <iterator>
#include <fstream>
#include <vector>
...
3
votes
3answers
318 views
in(std::cin) : What does it mean?
In the first example of Boost, in(std::cin) is used. I think in() get an istream and create some kind of iterator. However, I could not find any C++ documentation that explain it in detail. Could you ...
1
vote
1answer
756 views
simple istream_iterator question
I am new to C++, sorry if this is a silly question. I cannot seem to figure out why this does not work. It copies into the first vector, and seems to skip past the second copy call.
#include ...
3
votes
2answers
566 views
istream_iterator ignoring EOF (Ctrl+D) when reading chars
I'm trying to use istream_iterator for reading characters from cin. I've read that pressing Ctrl+D sends an EOF character which ends the input stream. Unfortunately, something is going wrong with it. ...
3
votes
2answers
110 views
Sparing User from Specifying Policy Template Parameter
I'm designing a kind of istream_iterator (call it my_istream_iterator) designed to extract words from an input stream. The manner in which the words extracted from the iterator will be dealt with is ...
2
votes
3answers
276 views
istream_iterator question, using in loop
Why will this loop not terminate? The program freezes after it prints out all the elements in the istream_iterator.
/*30*/ int main( int arc, char **arv ) {
/*31*/ vector<float> numbers( ...
0
votes
1answer
353 views
Using boost IOStreams with std::ostream_iterator
I tried to use an array-device based stream and wantet to pass the stream to std::ostream_iterator or std::istream_iterator, but unfortunately, I get a compilation error with gcc 4.3.5.
...
12
votes
3answers
1k views
Limiting the range for std::copy with std::istream_iterator
I have constructed a minimal working example to show a problem I've encountered using STL iterators. I'm using istream_iterator to read floatss (or other types) from a std::istream:
#include ...
19
votes
3answers
683 views
std::istream_iterator<> with copy_n() and friends
The snippet below reads three integers from std::cin; it writes two into numbers and discards the third:
std::vector<int> numbers(2);
copy_n(std::istream_iterator<int>(std::cin), 2, ...
0
votes
7answers
152 views
Why does this code continuously print newlines?
int row,column;
for (;;) {
cin >> rows >> columns;
if (!rows && !columns) break;
vector<char> dots(rows * columns);
...
2
votes
2answers
164 views
Can one define two `istream_iterator`s to a single file?
ifstream file1;
file1.open("in1.txt");
istream_iterator<string> iterator1(file1);
copy(istream_iterator<string>(file1), istream_iterator<string>(), back_inserter(lstr));
Can we ...
1
vote
5answers
1k views
Confused about usage of `std::istreambuf_iterator`
I've implemented a deserialization routine for an object using the << stream operator. The routine itself uses an istreambuf_iterator<char> to extract characters from the stream one by ...
0
votes
1answer
446 views
copy using istream_iterator
What would be end of source in this case when getting a string input from console?
int main()
{
std::vector<std::string> str;
copy (istream_iterator<std::string>(std::cin), ...
2
votes
1answer
585 views
Can't instantiate an istring_iterator using a wistringstream
I'm trying to split a string using the method found in this thread, but I'm trying to adapt it to a wstring. However, I have stumbled upon a weird error. Check the code:
#include <iostream>
...
2
votes
2answers
271 views
Why does istream_iterator<unsigned char, unsigned char> throw std::bad_cast?
What is going on?
#include <iostream>
#include <iterator>
#include <sstream>
int main() {
std::basic_stringbuf<unsigned char> buf;
std::basic_istream<unsigned ...
0
votes
1answer
197 views
istream_iterator leaking memory
All right, you guys were very helpful with my last question, so I'll try another one. This is also homework and while the last one was quite old, this has been submitted and is waiting to be marked. ...
0
votes
1answer
167 views
Copying from istream never stops
This bit of code runs infinitely:
copy(istream_iterator<char>(cin), istream_iterator<char>(), back_inserter(buff));
The behavior I was expecting is that it will stop when I press enter.
...
2
votes
2answers
213 views
Why can't I construct an std::istream_iterator with an unnamed temporary?
g++ allows this construction of an istream_iterator from an ifstream instance:
std::ifstream ifstr("test.txt");
std::istream_iterator<std::string> iter1(ifstr);
...but it doesn't allow ...
4
votes
4answers
5k views
Using istream_iterator and reading from standard input or file
I'm writing in Microsoft Visual C++ and I'd like my program to either read from standard input or a file using the istream_iterator. Googling the internets hasn't shown how simple I think it must be. ...
1
vote
2answers
1k views
getline vs istream_iterator
Should there be a reason to preffer either getline or istream_iterator if you are doing line by line input from a file(reading the line into a string, for tokenization).
1
vote
3answers
606 views
C++ compilation error using string and istream_iterator
When trying to compile the following:
#include <string>
#include <iterator>
#include <iostream>
using namespace std;
int main() {
string s(istream_iterator<char>(cin), ...
0
votes
2answers
257 views
what is the result of incrementing an istream_iterator which is already at the end of the stream?
I've looked at the standard and didn't see an obvious answer.
suppose i've done this:
std::istream_iterator<char> is(file);
while(is != std::istream_iterator<char>()) {
++is;
}
now ...
6
votes
9answers
975 views
How to read arbitrary number of values using std::copy?
I'm trying to code opposite action to this:
std::ostream outs; // properly initialized of course
std::set<int> my_set; // ditto
outs << my_set.size();
std::copy( my_set.begin(), ...