The erase tag has no wiki summary.
4
votes
2answers
139 views
c++ stl what does base() do
I have such code :
vector <int> v;
for (int i=0; i<5; i++)
v.push_back(i);
v.erase(find(v.rbegin(), v.rend(),2).base());
This code deletes the first element from vector v after ...
1
vote
1answer
18 views
Canvas, my eraser does not work
I tried to provide an eraser as if it was a brush, to erase distinctively. I have a black rect and a picture as canvas background. How can I erase parts of the rect?
"Erasing" in html5 ...
0
votes
2answers
58 views
Remove Duplicate Entries in a C++ Vector
Just want to remove duplicates. Pool is vector<pair<string, int>> but I seem to miss some elements at the start of the vector somehow. Can anyone verify the logic of the removal? Thanks :)
...
0
votes
0answers
26 views
android4.2.2, after erase SD card, could not create same name file any more until reboot
My English is very bad. I'll descript my question try my best.
android 4.2.2 :
Now a problem bothers me. when I do the following, the problem arises.
My operations are as follows:
Erase SD card -> ...
0
votes
2answers
30 views
erasing from a vector with a base class ptr
I have a class called Circle used in a physics simulation.
A circle is declared as follows:
class Circle : public IPhysics,
public IRenderable
{
...
}
The circles are created, then ...
2
votes
1answer
49 views
Should I be using erase-remove idiom here?
I have an std::vector<IRenderable*> (_pBkBuffer in the code below). It contains a number of static objects (at the start of the vector) that don't change, followed by a variable number of ...
0
votes
1answer
93 views
using iterator with a vector of objects c++
i have class contains a ofstream file, i face problem when using iterator to delete
an object of a vector of objects of this class.
Here is the error:
Error 10 error C2249: ...
0
votes
3answers
41 views
Replacing elements in vector using erase and insert [closed]
void replace(vector<string> my_vector_2, string old, string replacement){
vector<string>::iterator it;
for (it = my_vector_2.begin(); it != my_vector_2.end(); ++it){
if ...
3
votes
1answer
174 views
c++11: erase using a const_iterator
I believe that since C++11, the erase function of most containers (e.g. std::vector) accepts a const_iterator as parameter:
iterator erase (const_iterator position);
Still my compilers (GCC 4.8 and ...
0
votes
0answers
47 views
How to Erase stroke on canvas in WinRT?
I want to Erase the InkStroke on canvas using C# Point-By-Point, How to solve it?
So far, I just found that InkManipulationMode.erasing mode is used to erase the inkStroke, but the problem is it will ...
1
vote
1answer
62 views
deleting elements completely from multimap (C++)
So I have a multimap, where the key is a struct, and the values are another struct.
multimap<struct, struct> multimap1;
multimap1 contains (format is key: value)
1: Random Value 1
2: Random ...
0
votes
3answers
97 views
Why can't I erase string's numeric characters?
I want to erase all numbers in a string (eventually all symbols and white spaces) and keep all letter characters in the string. What I am trying to ultimately do is search for palindromes from large ...
0
votes
0answers
61 views
IOS Factory Reset/Overwrite on Non-Jailbroken iPhone
Is there an API or method that would allow a Factory Reset from Windows? I have written a windows app and apps for android and blackberry to both Factory Reset and overwrite those phones but IOS ...
1
vote
0answers
72 views
Eraser without erase background image
Hi I want to make an eraser for finger paint witch erase only what I painted not backgroud image imported. My erase is white. How can I do that?
1
vote
0answers
48 views
Android unable to edit partial of a path
public class Drawing extends View {
private Paint mPaint, mBitmapPaint;
private Bitmap mBitmap;
private Canvas mCanvas;
private Path mPath;
private float mX, mY;
private static final float ...
0
votes
1answer
166 views
Android Drawing, Erasing and Undoing Action
Here is the code for Drawing and Undoing but unable to join with Erasing.
It is either Drawing + Erasing or Drawing + Undoing but cannot three of these.
public class Drawing extends View {
private ...
1
vote
1answer
130 views
std::multimap and equal_range
I'm having some headaches with the std::multimap container and I wish to know what would be the proper way to achieve my goal. Basically, here is my SSCCE:
#include <iostream>
#include ...
0
votes
1answer
214 views
How to erase line dawn on a canvas
I am using a Canvas class to draw lines on the canvas. Now i want to erase line drawn in the canvas in the similar way as we do in our notebook using eraser. I go through several example but nothing ...
0
votes
2answers
103 views
C++ vector erase crashes program
My program creates projectiles that move forward, if they go out of certain bounds, they are to be deleted from the vector that they are stored in. The vector stores xcord, ycord, zcord, and their ...
-1
votes
1answer
42 views
Android, writing on specific sectors
I wonder if there's a possibility to create an android app in java which will be installed on specific memory sectors of phone(not the sd card). So those sectors can be accessed from other app and it ...
0
votes
1answer
71 views
Java Graphics2D to erase to a alpha background
I'm making an application that has a drawing board where you draw with your mouse, it draws ontop of an Label in a BUfferedImage. What I'm trying to implement right now is an eraser, the problem is I ...
0
votes
4answers
92 views
vector iterators incompatible while erase from vector
I have a map which elements are vectors.I have to delete from these vectors all elements which are equal to special number num
std::map<size_t,std::vector<size_t> > myMap;
for ...
1
vote
0answers
206 views
Eraser with PorterDuff.Mode.CLEAR always draws a black line, where i want to delete
Can i make it draw the path, where I move my finger to delete with a transparent line, or not draw at all?
This is how i instantiate my eraser:
OnClickListener eraseListener = new OnClickListener() ...
-1
votes
1answer
75 views
Why there is a black ouline while using eraser?
Please see the attached image. I have created an app in which user can draw with multiple images but when I am using the Clear Color in order to erase the drawing it is showing the black border around ...
0
votes
1answer
137 views
erasing from canvas, last canvas.drawPath()
this is the code i made:
private void touch_start(float x, float y) {
mPath.reset();
mPath.moveTo(x, y);
undoPath = new Path();
undoPath.moveTo(x, y);
canvas.drawPoint(x, y, ...
0
votes
1answer
49 views
Search and erase db rows with file checker
Hi I am trying to get a file path from the embed field, use that path to see if a file exists in that path. If the file dose not exist then delete that entry. I am running a game site and the script ...
0
votes
1answer
33 views
How to erase 1 line off a label text
I'm writing a program where I add a line to a label by using += and using environment.newline to write down to the next line. What I need to know is if there is a way to take off the last line that ...
2
votes
4answers
101 views
runtime assertion error while operating on vector c++
i have an array arr of vectors and I want to search and remove from the array vectors which have a specific value in one of elements, call it elementA. It happens to me, that if you have a look inside ...
0
votes
3answers
80 views
Erasing elements in a vector
So I have a vector of unsigned ints (vector<unsigned int> is called vector1). I have another vector of a struct I created (vector<struct> is called vector2). vector<int> holds an ...
3
votes
2answers
67 views
Delete line from a file after it have been used
i'm trying to create a script which makes requests to random urls from a txt file
import urllib2
with open('urls.txt') as urls:
for url in urls:
try:
r = urllib2.urlopen(url)
...
0
votes
5answers
205 views
Perl: Erase empty lines and save in a new file
I am trying to write a script which will count and erase empty lines from a file and save the changes in a new file:
if (@ARGV != 2) {
print "Usage: $0 infile outfile\n";
exit;
}
$infile = ...
0
votes
2answers
406 views
How to erase path area from canvas (Android)
I need to crop corners on ImageView. Not to round them but erase triangles from each corner.
Seems like the only way to do that is to override onDraw method and erase these areas from canvas using ...
3
votes
3answers
63 views
Erasing an element from a list container
I am having difficulty understanding why the code is behaving this way. First of all I have read the relevant answered material and still found the explanations abit advanced. So I'm wondering if ...
4
votes
4answers
258 views
what does C++ string erase return *this mean?
So the C++ string function
string& erase ( size_t pos = 0, size_t n = npos )
returns *this. What does that mean? Why do I need it to return anything?
Example
string name = "jimmy";
...
1
vote
1answer
77 views
How to free draw and erase on a MATLAB GUI?
I wanted to create a gui that worked as a canvas for free drawing lines with the mouse and with option of erasing...
anyone can help me?
2
votes
4answers
218 views
Remove characters from std::string from “(” to “)” with erase ?
I want to remove the substring of my string , it looks something like this :
At(Robot,Room3)
or
SwitchOn(Room2)
or
SwitchOff(Room1)
How can I remove all the characters from the left ...
4
votes
1answer
75 views
What does the following syntax with the combination of erase and remove mean? [duplicate]
Possible Duplicate:
Difference between erase and remove
suppose i have a container.... what does the following mean.
c.erase(remove(c.begin(),c.end(),99),c.end());
aren't erase and ...
-1
votes
1answer
73 views
Live CD that auto erases drives [closed]
I would like to get my hands on a live cd that when started, automatically starts a secure-erase operation on all drives that it detects in the machine. Does anyone know if such a thing exists already ...
0
votes
1answer
84 views
Ajax jquery searcher
Hello I recently coded this script with a help from some tutorials.
The "problem" is that i want to be able to manually inserting names. As it is now if i type in a name witch does not exsist in db, ...
0
votes
4answers
68 views
STL iterator: Assertion Error
Why does the following code produce an assertion error: Expression: list iterators incompatible?
#include <list>
using namespace std;
int main()
{
list<int> a;
a.push_back(1);
...
-8
votes
4answers
157 views
Remove all elements in vector C++ [duplicate]
Possible Duplicate:
Delete all items from a c++ std::vector
I think using begin in an iterator is messing this up since it's only iterating 26 times and skipping every 2 elements. How else ...
-1
votes
5answers
70 views
Replicate multidimensional array in java
In Java, how do we make a copy of a 3-D array?
Thing is, when we use new_array.clone() or something of that sort, we are putting the address of the entry into the another_array, and not the actual ...
1
vote
1answer
107 views
C++: Find and Erase a set element
i am having trouble to understand using find and erase with STL set. I have this:
struct NotMemberFound : exception {};
class FriendGroup
{
private:
set<Person, ClassComp> members;
public:
...
3
votes
2answers
593 views
Remove special characters from a string using iterators
I have a pretty simple one for you today, but it certainly has had me stumped for hours. I imagine there is something wrong with the subtitles of my string iterator. I've looked online and even passed ...
1
vote
3answers
140 views
MS-DOS commands doesn't work (COPY and ERASE)
I have done this .bat file to copy some maps and textures from my USB drive to the valve installation path, but it doesn't work, why?
@echo on
COPY \CS-Fix\Maps\*.* ...
1
vote
3answers
173 views
Python: Remove duplicates in a list pass into new list (Recursion)
I am trying to learn recursion. I am trying to take a list as a parameter and return a new list in which the values that were in the old list appear only once in the new list.
I have been going at ...
1
vote
2answers
115 views
C++ Big vector search item
First time posting here and this is driving me crazy! I can't explain it really well,So i'll try giving an example.
I'm trying to retrieve a element in a very big ( 100k ) vector to erase it. ...
0
votes
2answers
66 views
Template class vector erase not working
I'm working on a project that includes a handmade Set of sorts using a template class with two types and vectors (which I may change to pointers but not at the moment).
Adding and outputting values ...
-2
votes
2answers
85 views
C++ How can i erase a char from a string (input)
I am trying to make a program although i have finished it already i need something more. So, the user asked to give an input IF the string contains * i want to erase the first * and cout the input
...
3
votes
3answers
321 views
How to erase a Hard Disk Drive
This is an odd question, but here it goes. I would like to write a program to flash my external hard drive with 1s and then 0s to clean it completely so I can sell it. Now, why do I want to write my ...
