Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
7k views

How to erase element from std::vector<> by index?

If I have a std::vector and I want to delete the x'th element how to do it? std::vector<int> vec; vec.push_back(6); vec.push_back(-17); vec.push_back(12); vec.erase(???); Please help!
5
votes
4answers
220 views

C++: Removing all asterisks from a string where the asterisks are NOT multiplication symbols

So basically, I might have some string that looks like: "hey this is a string * this string is awesome 97 * 3 = 27 * this string is cool". However, this string might be huge. I'm trying to remove ...
5
votes
3answers
166 views

Will the erase function of set in C++ change the address of other elements?

I have the following code: set<Key> test; test.insert(key1); test.insert(key2); iter1 = test.find(key1); iter2 = test.find(key2); test.erase(iter1); My question is, if key1 is deleted, now ...
5
votes
5answers
319 views

vectors: rend() is being invalidated by erase()

According to the C++ specification (23.2.4.3), vector::erase() only invalidates "all the iterators and references after the point of the erase" As such, when using reverse_iterators to pass over all ...
5
votes
3answers
4k views

unlink vs remove in c++

What is the difference between remove and unlink functions in C++? Thanks.
4
votes
3answers
143 views

Efficiently erasing elements in tr1::unordered_map

I am experimenting with tr1::unordered_map and stumbled upon the problem how to efficiently delete elements. The 'erase' method offers to delete either by key or by iterator. I would assume the latter ...
4
votes
6answers
343 views

Doesn't erasing std::list::iterator invalidates the iterator and destroys the object?

Why does the following print 2? list<int> l; l.push_back( 1 ); l.push_back( 2 ); l.push_back( 3 ); list<int>::iterator i = l.begin(); i++; l.erase( i ); cout << *i; I know what ...
4
votes
6answers
355 views

How can i free a pointer vector?

how can i free up memory in a pointer vector? Here's the code: class A { private: int x,y,z; public: A(param1, param2, param3) { x=param1; ...
4
votes
6answers
9k views

How to erase & delete pointers to objects stored in a vector?

I have a vector that stores pointers to many objects instantiated dynamically, and I'm trying to iterate through the vector and remove certain elements (remove from vector and destroy object), but I'm ...
4
votes
2answers
1k views

C++ STL map::erase a non-existing key

Regarding the C++ STL map, erasing by key:- size_type map::erase ( const key_type& x ); Is it legal to erase a non-existing key? i.e. is the snippet below ok? map<char,int> mymap; ...
4
votes
6answers
15k views

How does a 7- or 35-pass erase work? Why would one use these methods?

How and why do 7- and 35-pass erases work? Shouldn't a simple rewrite with all zeroes be enough?
3
votes
2answers
89 views

How do you erase *AND CONTINUE* using a std::reverse_iterator?

I've been up and down stackoverflow and even the very, very nice Dr. Dobbs article but I can't find a definitive answer to the question. A section of the answer to the question What are the ...
3
votes
2answers
399 views

AS3 How to check if BitmapData is empty

I have a code to erase a masked movieclip. (credits here) I would like to know how I can check if the whole movieclip is been erased. So I thought I had to check if the BitmapData is empty, but I ...
3
votes
2answers
92 views

Scanf erases a char array unwillingly

See the following program: #include <stdio.h> #include <conio.h> #include <stdlib.h> #include <string.h> main(void){ printf("Array ...
3
votes
3answers
141 views

How do I use std:vector's erase() function properly?

I am having a strange issue when using the erase() function on a std:vector. I use the following code: int count = 0; for (int itr=0; itr<b.size(); ++itr) { if (b[count].notEmpty = false) { ...
3
votes
3answers
246 views

Deleting user-defined elements in the middle of a vector

I'm coding a program where I want to draw a card, and then delete so that it doesn't get drawn again. I have a vector of Cards (class containing 2 structs that define Suit and Value) called deck and ...
3
votes
4answers
1k views

Vector.erase(Iterator) causes bad memory access

I am trying to do a Z-Index reordering of videoObjects stored in a vector. The plan is to identify the videoObject which is going to be put on the first position of the vector, erase it and then ...
3
votes
2answers
327 views

vector::erase with pointer member

I am manipulating vectors of objects defined as follow: class Hyp{ public: int x; int y; double wFactor; double hFactor; char shapeNum; double* visibleShape; int xmin, xmax, ymin, ymax; Hyp(int ...
2
votes
2answers
75 views

Secure erasing java implementation

I need to implement Gutmann's algorithm for secure erasing some data in a database table. First of all, is it effective in a database? I'm not sure about the 35 steps. For 1-4 and 32-35, it's clear, ...
2
votes
3answers
59 views

What is proper way to delete objects that resides in a list that you find while looping that list?

I have a list of Star structs. These structs are in a std::list I am double looping this list and compairing there locations to detect a collision. When A collision is found I will delete Star with ...
2
votes
4answers
78 views

Overloaded assignment operator causes warning about recursion

I need to implement the overloaded the assignment operator in a class so the vector.erase function will work properly as proposed in the answers to "vector::erase with pointer member". I have ...
2
votes
3answers
128 views

Erasing element from Vector

In C++, how can I delete an element from a vector? Delete it right from where it is, i.e. let the vector resize Swap the element to be deleted with the last element s.t. pop_back() can be used ...
2
votes
2answers
153 views

AS3 Possible to check if mask is completely filled?

With brush_mc you can brush over a mask, wich turns the pixels to transparent in brush strokes. So visually it erases the mask and the masked movieclip appears. I want to trace, if the mask is ...
2
votes
1answer
131 views

Problems using string::find_first_not_of and string::find_last_not_of

I know this problem crops up a lot, but I couldn't find a piece of code which worked for me. I am trying to strip all punctuation off of an incoming string using find_first_not_of and ...
2
votes
5answers
146 views

Validity of iterator pointing to erased item

On that page, it's said that: this invalidates all iterator and references to elements after position or first. Does that means position and first iterators are valid after the erase? ...
2
votes
4answers
302 views

cppcheck error : Dangerous iterator usage

The code: for(x=abc.begin();x!=abc.end();x++) { if(-----) { ---- abc.erase(x); } } And the error is ::: Dangerous iterator usage After erase the iterator is invalid ...
2
votes
4answers
2k views

How to delete “px” from 245px

Whats a simple way to delete the last two characters of a string?
2
votes
2answers
157 views

Erasing a container element using iterators

My current homework assignment has me creating an iterator class for a list. I'm stuck at creating a good erase(iterator where) function. Current code (reduced to fit question): class List { ...
2
votes
1answer
176 views

Erase-remove idiom for deleting in a nested container? (deleting outer ones; C++ STL)

when i'm deleting from a non-nested container like a vector, i'm doing something like: struct is_to_remove { is_to_remove(dynamic_bitset<>& x) : x(x) {} const bool ...
2
votes
4answers
429 views

Problem with invalidation of STL iterators when calling erase

The STL standard defines that when an erase occurs on containers such as std::deque, std::list etc iterators are invalidated. My question is as follows, assuming the list of integers contained in a ...
2
votes
1answer
660 views

Blending a texture to erase alpha values softly with OpenGL

I have a little paint application which was based on the GLPaint sample code. It is working fine. My Problem is that I need to implement a "brush" that erases the textures which were already drawn. ...
2
votes
1answer
275 views

OpenMP parallelization and deleting from a vector of lists

gang. First, a high-level description of the problem & approach. I have a list containing images and pixel locations in each image - a list of lists. I want to pick n items at random from that ...
2
votes
1answer
355 views

Multimap erase doesn't work

following code doesn't work with input: 2 7 add Elly 0888424242 add Elly 0883666666 queryname Elly querynum 0883266642 querynum 0888424242 delnum 0883666666 queryname Elly 3 add Kriss 42 add Elly 42 ...
2
votes
2answers
269 views

Qt painted content goes lost

I am writing an info-screen program. I created a full-screen widget and draw contents onto it. In order to extend the life cycle of the TFT-display device, I want to implement a pixel-shifting ...
2
votes
5answers
804 views

C++ - Deleting a vector element that is referenced by a pointer

Well, I don't know if it is possible, but the thing would be: struct stPiece { /* some stuff */ stPiece *mother; // pointer to the piece that created this one }; vector<stPiece> pieces; ...
2
votes
5answers
2k views

How do I erase printed characters in a console application(Linux)?

I am creating a small console app that needs a progress bar. Something like... Conversion: 175/348 Seconds |========== | 50% My question is, how do you erase characters already printed ...
1
vote
0answers
47 views

Understanding circular program flow (vector of pointers + inheritance)

I'm writing a container class "AgentHandler" containing a vector of "Agent"s. AgentHandler has functions for adding/removing instances of "Agent" into/from the vector. I then proceed to pass the ...
1
vote
2answers
96 views

c++ vector; remove_if only removing a single value?

I'm supposed to implement a function that erases a range of values from containers. So eraseRange(v, 1.5, 24); for example would delete any value greater than 1.5 and less than 24 from the ...
1
vote
1answer
84 views

Help with eraser from buffered Image

So below I am working on a paint type project for class that lets you draw shapes lines etc, now my professor wants us to add a eraser tool that lets you erase parts of the image, it is on a buffered ...
1
vote
2answers
35 views

Erasing specific rows of multiple dataframes within a list

Lets suppose I have such a list including 3 dataframes named 1, 3 and 4: 1 3 4 1 A c(2, 1, 3, 1, 2) c(1, 1, 2) c(1, 1) 2 B c(1, 1, 1, 3, 2) c(2, ...
1
vote
5answers
212 views

Erase parts of drawings in OpenGL

I would like to know if it is possible to erase parts of any drawing in OpenGL? Lets say I have drawn two lines with my mouse and those lines are overlapping at some points. Is it possible to erase ...
1
vote
3answers
118 views

erasing a shape in java

i am trying to draw circles that appear every second, i was able to do so but how do i make the old shape disappear ? public void paint(Graphics g) { try { while (true) { Shape circle ...
1
vote
5answers
150 views

Why can I access an element I just erased from an stl vector in c++?

In this example, I create a vector with one integer in it and then I erase that integer from the vector. The size of the vector decreases, but the integer is still there! Why is the integer still ...
1
vote
4answers
325 views

Using Css to Clear TextBox Text/value

I was wondering, if it was possible to clear a text box with a css code rather than using javascript ?
1
vote
3answers
299 views

C++ Segmentation when using erase on std::list

I'm trying to remove items from a C++ linked list using erase and a list iterator: #include <iostream> #include <string> #include <list> class Item { public: Item() {} ...
1
vote
1answer
58 views

Erasing files and folders in .NET

I've got an eraser class in my .NET application. It allows user to delete files and folders securely, without a chance to recover erased data by any file recovery software. Currently it works by ...
1
vote
1answer
108 views

How to erase flash memory in a module

On my Linux system I can erase flash memory from the command line by using the flash_erase program from the mtd library. But I need to erase an mtd partition in a module. In the kernel include files I ...
1
vote
0answers
254 views

How erase part of UIImage with an other UIImage

I posted that question and I have not yet found a solution. I was wondering if there is a way to use an UIImage to delete a part of an other UIImage I would use an UIImage to 'mask' this ugly black ...
1
vote
2answers
191 views

vector::erase() not working as expected

for(it1=prime.begin();it1<prime.end();it1++){ for(it2=it1+1;it2<prime.end();it2++){ if(*it2%*it1==0){ prime.erase(it2); } } ...
1
vote
1answer
383 views

How to erase flash memory (SD card)?

I am developing embedded system that writes to SD card. As you all know, write access is faster if flash is pre-erased. Is there any easy way to erase flash memory in windows? Thanks, Yony.

1 2 3