Tagged Questions
3
votes
6answers
136 views
Shorter way to get an iterator for a std::vector
Lets say that I have got a vector like this.
std::vector<a_complicated_whatever_identifier *> *something
= new std::vector<a_complicated_whatever_identifier *>;
// by the way, is this ...
1
vote
1answer
312 views
std vector const_iterator assigment Access violation
I'm working on code in which 1 of more variable length object are stored as a vector of all units i.e. assuming each letter is a unit, and the same letter are the same high level object.
the vector ...
1
vote
2answers
530 views
vector iterators incompatible
I'm currently working on a graph library for C++ and now got stuck at a point where I get an assertion error in debug mode during runtime. I also had a look an some other question here on SO but none ...
1
vote
1answer
156 views
mathematical vector class through composition
I started to write a class which would act much like the std::vector but with some mathematical operations. Mainly things like the norm of the vector and overloading important mathematical operators ...
1
vote
4answers
610 views
Using a pointer to an object stored in a vector… c++
I have a vector of myObjects in global scope.
std::vector<myObject>
A method is passed a pointer to one of the elements in the vector.
Can this method increment the pointer, to get to the ...
0
votes
1answer
49 views
how do i create a map and iterate between exp_tag and lhs to print them in sorted order?
extern int JAX_EXP_DEBUG_print_all_exps_in_session ( )
{
tag_t part_tag = NULL_TAG;
for ( PART_cycle_parts_in_world ( &part_tag ); part_tag; PART_cycle_parts_in_world ( &part_tag ) )
...