C :: Removing Item From A Queue

Aug 17, 2014

I'm having a problem with removing an item from a queue. At first in the debugger I got SIGTRAP but I don't get it anymore but the problem still exists. When you try to remove an item from the queue the first nothing happens. Here's the code below compile it and you see what I'm talking about.

Code:

#include <stdio.h>
#include <stdlib.h>
struct Node {
char let;
struct Node *nextNode;
};

[code]....

View 12 Replies


ADVERTISEMENT

C++ :: Removing First Item From Single Linked List

Oct 10, 2013

My algorithm is not working

void remove_first() {
current_node = head_node;
node * temp_node = current_node;
current_node = current_node->get_next();
head_node->set_next(current_node);
delete temp_node;
temp_node = NULL;
}

View 2 Replies View Related

C++ :: Increase Sizes Of Queue In A Vector Of Queues And Find Shortest Queue

Feb 20, 2013

I have a paradigm in a loop of queues of a vector,if a condition is true,increase sizes of the queue of that particular queue in the loop of queues, if condition is false, the queuesize is left as such in loop of queues. After this operation i need to search the queue sizes of all queues and enqueue in the shortest queue.

I want to do something like the code given below

#include <vector>
#include <queue>
int min_index = 0;
std::vector<std::queue<int> > q
std::size_t size = q.size();

[Code] ....

How to implement this logic?

will q[i].size=q[i].size+5 increase the queuesize by 5 for the ith queue?

View 12 Replies View Related

Visual C++ :: Enable / Disable Menu Item 2 In OnUpdate Handler Of Menu Item 1?

Sep 15, 2014

I have two menu items. When item 1 is disabled, I want item 2 to be disabled as well. In the OnUpdate handler of menu item 1, I have tried to use "t_pMenu = pCmdUI->m_pMenu;", "t_pMenu = pCmdUI->m_pSubMenu;" and "t_pMenu = pCmdUI->m_pParentMenu;" but I always get NULL t_pMenu. How can I achieve this purpose?

Code:
void CDummyView::OnUpdateMenuItem1(CCmdUI* pCmdUI)
{
if(m_bShowMenuItem1) {
pCmdUI->Enable(TRUE);

[Code]....

View 14 Replies View Related

C++ :: Removing Element From Map?

Jun 20, 2013

I have a map as below. MoTopImpl is a class.

Map<MoTopImpl*,os_Reference_protected<MoTopImpl> > map_;

The map is populated as below:

void setMoInMap(MoTopImpl* mo,MoTopImpl* me) {
map_[mo] = me;
}

Now, I want to remove a specific element from this map. I am passing the element to be removed to the remove function as below:

void Asap::removeMoFromMap(MoTopImpl* mo) {
// First solution
if (mo != 0) {

[Code]....

And the function removeMoFromMap is called as below:

MoTopImpl* moTop = getMoTopImpl();
if (moTop != 0)
removeMoFromListMosSuspended(moTop);

But I am able to empty the map by iterating through the complete map as below:

Mapiter<MoTopImpl*,os_Reference_protected<MoTopImpl> > moIter(map_);
for (moIter = map_.first(); moIter; moIter.next()) {
moIter.remove();
}
cout << "Map zise = " << map_.size() << endl; // Prints zero

View 6 Replies View Related

C/C++ :: Removing A Name From A Vector

Nov 3, 2014

I'm supposed to create a program that stores names and then the final function is supposed to remove a name. But it only removes the first name instead of the inputted name.

the problem with names.erase(names.begin()+i)?

#include <iostream>
#include <string>//include for string function
#include <vector>//include for vectors

[Code].....

View 9 Replies View Related

C++ :: Removing Characters From A String

Nov 1, 2013

I want to remove a particular character from a string. Say '.'. I've tried the following:

void removeDots(std::string &x)
{
std::remove_if(x.begin(),x.end(),[](char c){return (c == '.');});
}

This has the effect of removing the dots but keeping the length of the string the same, so old characters are left over at the end. Is there an extra action to do to x to make it the right size or is there a better way of doing it?

View 3 Replies View Related

C++ :: Removing Punctuations Off From A String

Jun 5, 2013

I'm working on a problem in which I've to design a program in which the punctuations should be removed from the string. For eg., if input str is: "Hello!!"; the output must be: "Hello".

I'm not sure how to remove a sub-string (if that's the right word!!) from a string. So, I designed a program which print out the punctuations. For eg., if input str is: "Hey!!"; the output would be: ! !

Here it is:

#include <iostream>
#include <string>
using namespace std;
int main (){
cout << "Enter a string" << endl;

[Code] ....

So, I want to know what should be added to this program so that the punctuations can be removed; or should I rewrite another program for that?

View 1 Replies View Related

C++ :: Removing All Non-doubles From A String

May 19, 2014

I have many random strings that look something like this:

" 55.343 Char 1.3825 asdf 0.1853 500 1.1359 4.0000 1 100 4.5043"

Notices how there are ints and chars and doubles in the string.

How do I remove all non-doubles for a string like this? The chars and ints may be anywhere within the string.

View 6 Replies View Related

C++ :: Removing From A Vector Of Sets?

Apr 18, 2014

I have a vector of sets in which I wish to remove a set from the vector, if it contains a certain value, is there any way of doing this?

for(int j = 0; j <= clauseVector.size(); ++j){
if(clauseVector[j].find(find) != clauseVector[j].end())
std::cout << "FOUND: " << propagator << "
";
}
}

This is what I have been using to find the element, but is there a way to remove the set that contains the element?

If needed I can include the full code

View 11 Replies View Related

C/C++ :: File I/O And Removing Duplicates

Nov 18, 2014

I have a program that's supposed to read in a file with comma seperated values. This file contains duplicates. The goal is to write a new file that does not contain any of the duplicates. I've successfully written the code to read in a file and create a new, identical file, but I'm failing at deleting the duplicates.

The format of each line in the file is: index,first_name,last_name,address,city,state,zip_code

Example: 1,John,Savage,579 Lone Street,Providence,RI,02903

As a requirement for the assignment, I've defined a Person class:

//File: Person.h
struct Person {
string index;
string first_name;
string last_name;

[Code] .....

This code writes the file I want (overlooking the duplicates) if I implement my equality operator as follows:

bool operator ==(const Person &a, const Person &B)/>
{
return false; //placeholder
}

Obviously this doesn't get the job done, since it will never detect a duplicate. The problem is that whenever I try to write any meaningful code, the program writes an empty file. The idea I've been trying to implement is to compare each of the members of Person like this:

bool operator ==(const Person &a, const Person &B)/>
{
//if two Person objects have equivalent names, they are duplicates
return ( (a.first_name == b.first_name) && (a.last_name == b.last_name) )
}

At first I thought the program was working just as before, but then deleting each line of the file as the result of an error in my code. However, I tried troubleshooting the problem by adding in

cout << a.last_name;

to parts of my code so I could see the value in certain places. Whenever I add this line or try to access a member of Person, the program writes a blank file.

View 3 Replies View Related

C# :: Removing Items From ListBox

Mar 5, 2014

I'm working on creating a windows form with a listbox, textbox, and 2 buttons (add,remove). I need a way of removing every string matching the contents of the textbox from the listbox. Here's what I have:

for (int i=0;i<listBox1.Items.Count;i++)
{
//...
listBox1.RemoveAt(i--)
}

Seems to work, but I need a way to show a error message once the user clicks 'remove' and no items in the listbox match.

View 6 Replies View Related

C/C++ :: Removing Duplicate Values From Map?

Mar 1, 2015

im working on a homework assignment t that should print all pairs of integers that sum to val. I have so far finished except It prints duplicate values (ie (3,1) and(1,3) for values that add to 4) . how can i remove these duplicate pairs of values?

#include <iostream>
#include <map>
#include <vector>
using namespace std;
void printPairs( vector<int> numbers, int val){
int i;

[code]....

View 2 Replies View Related

C# :: Removing Title Bar From External App

Jan 3, 2015

I'm trying to remove the title bar from an external app. The reason is I don't want anyone to be able to move it.

But my code below doesn't remove the title bar. Could this be because it's not removable? I read somewhere title bars of external apps may be not removable if the app doesn't allow it.

So, I'm not sure why my code doesn't work - either it's wrong or the app doesn't permit it?

My app is a winform.

int style = GetWindowLong(app1Win, GWL_STYLE);
style = style & ~WS_BORDER;
SetWindowLong(app1Win, GWL_STYLE, style);
SetWindowPos(app1Win, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);

View 1 Replies View Related

C :: Removing Trailing Character With Strtok

Sep 18, 2013

I am having a problem with the output of a file. My function does everything it needs to do with the exception of one line. I have a .dat file with the following:

Code:
joe clint james brint howard
jimmy
alexander
*
me

When I run the function my output is as such:

Code:
file opened
word: joe
digit: 3
word: clint
digit: 5
word: james

[Code] .....

ERROR non alphanumeric digit on line 4!

File closed "Howard" is only six digits in length. Also it seems to skips a line in the output which could be the extra character but I am not sure. What I find very interesting is the other names, (jimmy & alexander) on separate lines do not have that problem.

Here is my function:

Code:
#include "main.h"
#include "fileCheck.h"
int fileCheck(FILE *fp){

int line_count = 0;
int ret_val = 0;
int digit_count = 0;
char file[BUFF];

[Code] .....

How I can correct this? I am aware of sscanf to parse the line but I do not know the format of the file. All I know is the file will be alphanumeric and if there is a non-alphanumeric, I must print out an error with the line it occurred on such as the above output.

View 3 Replies View Related

C :: Removing Duplicate Elements From Array

Nov 4, 2013

While removing duplicate elements from an array, if more than 4 array elements are same then removal does not work. however my logic seems to be alright. i reckon there is a problem with the conditions and assignments in the three for loops that i have used. the program is as follows:

Code:
/*c program to remove duplicate elements in an array*/
#include<stdio.h>
int main(void)
{
int array[30],i,j,k,n;
printf("

[Code] ....

Take for instance if the input elements are 1,1,1,1,1,2,2,3,5 then after removal of duplicacy the array is 1,1,2,3,5.

View 3 Replies View Related

C :: Removing A String - Linked List

Feb 19, 2013

I'm trying to go search through my linked list for a passed string and if it matches, remove it...but obviously link everything back together properly. This is what I have so far but when i pass it to my display function, which is properly working, it goes into an endless loop

Code:
void llRemoveString(LinkedList** ll, char* string) {
LinkedList* newNode = (LinkedList*)malloc(sizeof(LinkedList));
newNode->value = string;
LinkedList* n = *ll;

[Code] ....

View 8 Replies View Related

C++ :: Removing Duplicate Strings In A Vector?

Sep 1, 2014

I'm trying to create a database/search engine program and I'm having remove duplicate strings from a vector. I'm mostly just trying to make it so that if 2 or more movie have the same title in the database, it will remove the duplicates and just print out one copy of the movie console. I tried using the unique() command, but it doesn't seem to work.

code:

#include <iostream>
#include <string>
#include <vector>

[Code].....

View 2 Replies View Related

C++ :: Removing Part From A Vector Of Sets?

Apr 18, 2014

I have a vector of sets, which I am removing any element which contains a certain value. For example, if I was looking for 2:

[0] 1 2 3
[1] 4 5 6

After the program was run, I would be left with just [0]4 5 6.

This is the code I have been using

auto iter = std::remove_if( clauseVector.begin(), clauseVector.end(),[propagator] ( const std::set<int>& i ){
return i.find(propagator) != i.end() ; } ) ;
clauseVector.erase( iter, clauseVector.end() ) ;

I want to know, is there any way I can tweak this code so that it only removes one part of the set rather than the whole thing. For example with above example, I would be left with

[0] 1 3
[1] 4 5 6

View 4 Replies View Related

C/C++ :: Erasing / Removing Elements From A Vector?

Mar 23, 2015

I am working on a project for class where I use a parent Shape class with circle, rectangle, ect. Classes inheriting from that. Along side these I use a class called Scene. In main I need to create a scene and add some shapes to a vector in scene.

vector<Shape*> shapes

I need to use functions addShape(Shape* shape) and a delete shape method. I have the addShape finished. The problem I am having is with the delete method. Is there a way that I can use something like deleteShape(Shape* shape)? Is it possible for me to delete a specific shape from the vector by passing in that shape, or can it only be done using index? I have looked at the documentation for std::vector as well as std::vector::erase. I am wondering this because if I use index values and do something like

void Scene::deleteShape(unsigned int x) { shapes.erase(shapes.begin() + x ); }

It will lead to some errors later on due the the changing size and indexes of the vector and elements.

View 4 Replies View Related

C/C++ :: Removing Characters From CSV File That Should Contain Only Numbers

Apr 3, 2014

I currently have a .csv file that should only contain numerical values however there are errors in some columns that mean there is text included. I am wondering what the best way of going about removing these characters would be.

I am looking at using : str.erase(std::remove(str.begin(), str.end(), 'xxxxxxx'), str.end());

For this I will need to read my data into a string and then remove the alphabet from that string. I am currently doing this like so (I use the '?' as a delimiter because I know there are none in my file).

#include <iostream>
#include <fstream>
#include <algorithm>
using namespace std;
string Weather_test;
char chars[] =

[Code] ....

The problem with this is I don't know what to do around the chars[!eof] part.

View 8 Replies View Related

C :: Removing Vowels Defined As Characters From Array

Dec 5, 2013

My question is how create a function to remove all vowels defined as characters('a' 'e', 'i', 'o', and 'u') from the array provided to it.

An example of how the function should work:

input: Hello world, how are you?
output: Hll wrld, hw r y?

Code:
int removeVowels(char arr[]) {
int i;
//move through each element of the array
for(i = j; arr[i] != '/0'; i++) {
//if the last character was a vowel replace with the current
//character

[Code] .....

View 9 Replies View Related

C++ :: Removing NULL Values In Text File

Sep 2, 2013

I have a measuring board that writes a .txt file in the following format:

board number;type;NUL;channel;measured value;date and time
DS207;5000007;NUL;0;20251;11.07.2013 12:30:02 MESZ
DS207;5000007;NUL;1;10159;11.07.2013 12:30:02 MESZ
DS207;5000007;NUL;4;27.18;11.07.2013 12:30:02 MESZ
DS207;5000007;NUL;0;20233;11.07.2013 12:35:02 MESZ
DS207;5000007;NUL;1;10149;11.07.2013 12:35:02 MESZ
DS207;5000007;NUL;4;27.31;11.07.2013 12:35:02 MESZ
DS207;5000007;NUL;0;20256;11.07.2013 12:40:02 MESZ
...

I would like to extract and analyse the data but the data behind the NUL entry is not accessible for me maybe due to the fact that NUL normally marks the end of a line. Is there a method to remove the NUL entries in this text file?

View 12 Replies View Related

C++ :: Removing Element From Template Linked List?

Nov 11, 2013

I have been trying to implement a way to remove a post from a list of posts implemented with a template doubly linked list. I have thought that the best way to do this might by operator overloading, but I have digressed. I have just thought of using a isEqual that checks equality, but when trying to implement i'm getting weird errors.

This is within my class wall, which is a linked list of wall posts, getPostInfo is within the class WallPost.

bool isEqual(WallPost const & a, WallPost const & b)
{
if(a.getPostInfo() == b.getPostInfo())
return true;
else
return false;
}

I have several instances of the error "void illegal with all types" on line 3. It also is complaining about a not being a arithmetic, unscoped enum, or pointer type. I am assuming that it is because my getPostInfo function is a void.

View 16 Replies View Related

C++ :: Removing All White Space From Line Of Text File?

Jun 30, 2014

this is the code I tried in my code block 10.05.....tried code for removing all white space from a line of a txt file. this is my code it runs but i cant get the result i need.

#include <iostream>
#include <conio.h>
#include <fstream>
#include <string>

[Code].....

View 9 Replies View Related

C Sharp :: String Format Removing Leading Digits

May 7, 2014

In formatting strings, how would I only get the decimals?

So, 1.456 would be .456(no digit before the decimal). I have seen a lot on removing the decimals or rounding to a certain place.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved