No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Other than CS (survive)
- Interests
- exports
- PC Specs
- AMD athlon(tm)XP 2600+ 1.92 GHZ 512MB RAM
2 Posted Topics
I tried to make a function , using iterators, to walk a deque backward and my function does not work . I would appreciate if somebody cna help me : double Dq_Iter_Backward() { deque<int>::reverse_iterator InvDeqIter; DeqIter=intdeq.begin(); InvDeqIter = intdeq.end()-1; for(InvDeqIter = intdeq.end()-1;InvDeqIter!=intdeq.begin()-1;--DeqIter) { cout<<InvDeqIter; } elapsed = clock()- start_time; elapsed_time … | |
Please can somebody help me .......... I have no idea on how to implemenet a program to benchmark functions such as insertion , deletion and iteration and deuqe. I know that I have to use the clock_t function but I can not figure out, if I need to call the … |
The End.