vote up -1 vote down star
1

Strange programming problems as of now..As you can see below i have assigned intFrontPtr to point to the first cell in the array. And intBackPtr to point to the last cell in the array...:

bool quack::popFront( int &popFront )
{   
    //items[count-1].n = { 9,4,3,2,1,0 };
    nPopFront = items[0].n;
    if ( count >= maxSize ) return false;
    else
    {
	    items[0].n  = nPopFront;
	    intFrontPtr = &items[0].n;
	    intBackPtr  = &items[count-1].n;
    }
    for (int temp; intFrontPtr < intBackPtr ;)
    {
	      intFrontPtr++;
	      temp = *intFrontPtr;
	     *intFrontPtr = temp;
    }
    --count;
    return true;
}

Its just my implementation of a cross between a queue and a stack..PopFront is a public method of the class object quack..The items is a private struct type 'item', it is within the quack.h. It has one member, 'int n'..But, that is irrelevent.

the comment in the code is the contents of my integer array, 'items'.

I am trying to Pop elements off the front of my array. WHat im thinking is that after i get the first item, i'll just incrememnt the frontPtr and transfer the item i got previously to the frontPtr i incremented!...

I cannot, for any reason, use a + or - shift by 1 or the use of stls, boosts, std's and the like..

Can someone help me with my homework assignment?

flag

38% accept rate
it seems that the code i wrote above pops from the back of the list.. – lampshade Nov 5 at 7:35
top+1 = 0; Sorry, i will edit for my inconsistency – lampshade Nov 5 at 7:38
2  
Write in natural language on a paper what you would need to do. Use drawings with the array contents, add the pointers as arrows and verify your algorithm on paper before trying to code it. Implementation of a queue or a stack is rather simple, but if it is provided and you just read it you will learn much less than if you have to work it out. – dribeas Nov 5 at 7:40
1  
I think you meant "Dilemma" – Steve Gilham Nov 5 at 7:42
Do u guys immediately see the problem?? – lampshade Nov 5 at 7:42
show 1 more comment

3 Answers

vote up 1 vote down check

My suggestion are :

1). Put statement --count where it keeps object's state valid on exceptional condition.

2). clear your concepts of pointers which will help you a lot.

link|flag
I found it out. – lampshade Nov 5 at 7:56
nPopFront = items[top+1].n; if ( count >= maxSize ) return false; else { items[0].n = nPopFront; intFrontPtr = &items[0].n; intBackPtr = &items[count-1].n; } for (; intFrontPtr < intBackPtr ;) { intFrontPtr++; items[++top].n = *intFrontPtr; } top = -1; --count; – lampshade Nov 5 at 7:56
vote up 0 vote down

There are quite a few problems. But I believe your major one is this loop:

for (int temp; intFrontPtr < intBackPtr ;)
{
     intFrontPtr++;
     temp = *intFrontPtr;
     *intFrontPtr = temp;
}

It looks to me like you are trying to shift all your items down. Since this is homework, I'm not going to give you the answer but I'll give you some hints to help debug this.

What you want to do is examine your items array at the beginning and end of the loop.

for (int temp; intFrontPtr < intBackPtr ;)
{
     // whats does array look like here
     intFrontPtr++;
     temp = *intFrontPtr;
     *intFrontPtr = temp;
     // and what does array look like here
}

If you don't have experience with a debugger, add a function call that will dump your array.

link|flag
vote up 0 vote down

Generally, I would not recommend using an array if you want to pop items off the front. You would be much better off using a linked list, or some other structure which will allow you to remove items in O(1) time. It will be much easier to remove (pop) items this way.

As for your current code, I really can't comment without a better idea of what your class looks like. Please post the class definition at least so we can tell what all your variables are referring to, and what you're code is actually doing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.