Tagged Questions
The stacks tag has no wiki summary.
7
votes
4answers
208 views
Threading heap and stack
How memory is allocated in case of spawning a new thread, i.e how memory heap, memory stack, and threads are related? I know this is fundamental (.net framework concept) but somehow I am not much ...
6
votes
6answers
1k views
Palindrome Using a stack
Good day!
Our professor required us to check if a word is a palindrome by using stacks.
Every time I run it, there's an error: Unhandled Exception. Access violation What am I doing wrong? How can i ...
4
votes
4answers
72 views
Loops and Stacks, palindrome homework assignment
I'm working on an assignment for my programming class but I've run into some difficulty and I'm not sure where else to look. Basically the question asks that we write a program that checks for ...
4
votes
2answers
232 views
Pseudocode for non-recursive implementation of tree height and isBST
I am in the process of converting recursive function for a BST to non recursive to help prepare for an interview. So far I figured out preorder, inorder, postorder, search, delete, insert, and ...
3
votes
7answers
655 views
What do Push and Pop mean for Stacks?
long story short my lecturer is crap, and was showing us infix to prefix stacks via an overhead projector and his bigass shadow was blocking everything so i missed the important stuff
he was ...
2
votes
3answers
97 views
Dynamic Stack Memory Reallocation
I'm fairly new to C++ and new to pointers as well. I'm currently working on a stack and was trying to reallocate the memory for the stack as the size of the stack reaches the top however, I'm running ...
2
votes
4answers
458 views
Java and Different Types of Stacks
Currently the only stack I know anything about is Vector, I normally use this in place of an array but I understand that there is other types of stacks and they all suit different jobs.
The project I ...
1
vote
1answer
66 views
How do I create an iterator that will return only the elements that are different in Java?
More details of the issue:I need to create an iterator for a Stack of Strings that uses an ArrayList that returns only the words that are different after making the words all lowercase in the file and ...
1
vote
1answer
55 views
ADT Specifications Modification for Stacks
I did this on my own i just want confirmation that it is right. I am supposed to Modify ADT Specifications for Stacks to account for operations suck as count (returning the number of elements in a ...
1
vote
5answers
231 views
Challenging Problems Involving Stacks (Data Structures) [closed]
Does anyone know where I can get lots of challenging programming problems that involve the use of stacks. I've been taking a data structures course and I'm really enjoying it, so I'll like to ...
1
vote
1answer
110 views
Trouble going back to main activity
I'm new to Android programming and I am making a game. My problem is dealing with multiple activities on the stack. So I have a gameOver Activity that I call when my player dies. From this activity, I ...
1
vote
3answers
96 views
Java moving number between stacks
I have a question, about using Stack with Java.
Let's say I have three stacks
Stack<Integer> stack1 = new Stack<Integer>();
Stack<Integer> stack2 = new Stack<Integer>();
...
1
vote
4answers
157 views
Datatype independent stack - C Programming
Often stacks in C are dependent upon datatype used to declare them. For example,
int arr[5]; //creates an integer array of size 5 for stack use
char arr[5]; //creates a character array of size 5 ...
1
vote
2answers
74 views
memory for multiple user level thread stacks
I want to understand how is the memory for the stacks of the user level threads kept in memory. I think that all the stacks would begin at a page boundary... Am I right?? How does the user level ...
1
vote
1answer
921 views
Using Stacks in ImageMagick to Selectively Blur Part of the Image
I'm trying to annotate some text onto a base image with a dropshadow. I don't like the results I get from using the -shadow option, so I'm putting down the text, blurring it, then putting down the ...
0
votes
1answer
111 views
Assign values of a stack to another stack
I am working on this assignment.
I need to create a temporary stack without initializing it.
Then push the items of stack 1 into this temporary stack using a while loop.
Then I need to use ...
0
votes
3answers
119 views
Stack implementation
I am new in programming and I have a problem in stack implementation.
My question is what is difference between array and stack in implementation. What is the exact syntax to define a stack in ...
0
votes
4answers
66 views
How do I copy a stack in Java?
I have a stack A and I want to create a stack B that is identical to stack A. I don't want stack B to simply be a pointer to A -- I actually want to create a new stack B that contains the same ...
0
votes
1answer
44 views
application keeps receiving segmentation fault - except if i add a for loop
Hi everyone: Here i have created a queue from two stacks: You add to the one and remove from the other - when you want to remove the first stack dumps all its data into the second one, and it works ...
0
votes
2answers
90 views
try throw exception handling
I'm having a little trouble with making the following piece of code work. I cannot write a throw exception so I don't know what else could I do.
case 't': // Top of Stack
try
...
0
votes
1answer
135 views
Implementing 3 stacks in one Array using C++
Was wondering how this can be done using C++.
Divide given array into 3 parts - (0 - N/3), (N/3 - 2N/3) , (2N/3 - N). How would i keep track of the overflow?
Thanks
Kelly
0
votes
1answer
140 views
LinkedList/Stack/Queue - Help with Dequeuing
I had to write a linked list, then turn it into a dynamic Stack, then turn that into a dynamic Queue. Well everything seems to work except the "dequeuing", right as the programs about to finish, it ...
0
votes
1answer
279 views
How to put characters from a string into an array based version of an ADT stack
so for my assignment, I need to used the array-based version of the ADT stack to create a stack called myStack. I then need to create a string variable called str and assign it to the string "abcdefg" ...
0
votes
1answer
198 views
What is the BEST-WORST case time to add and remove elements from a queue that has been implemented with the help of 2 stacks
I recently came across this question
What is the BEST-WORST case time to add and remove elements from a queue that has been implemented with the help of 2 stacks.
could not come up with great ...
0
votes
1answer
368 views
Getting wrong outputs in infix to postfix application with java
i recently wrote a java program that takes an infix expression and converts it into a postfix expression. It works for the most part but i am getting wrong outputs for some expressions. For example ...
0
votes
1answer
134 views
How do you sort a txt file of strings using a binsort method in java?
What methods should i be implementing?
How do you individually pop off characters from the strings in the .txt file?
How should i approach making the bins?
0
votes
5answers
259 views
Stacks in Java with exceptions
Question :
b) A Stack is a last-in first-out (LIFO) data structure. Write a Java class
Stacklnt that stores a stack of integers using an alray as its private data
structure. A Stacklnt has:
A ...
0
votes
2answers
321 views
What is the command line syntax for custom stacks for the OSX Leopard dock?
I know there is a command line syntax for adding custom stacks to the OSX Leopard dock besides the "Downloads" which comes by default. What is it?
-1
votes
2answers
95 views
Finding One Item in a Stack
In my code, I am trying to find a specific item put onto the stack. To do so, i am moving all the items in the way to a temp stack, to pop it off the original stack. After it is popped, I am to move ...
-1
votes
3answers
74 views
Im almost there …but why does it say that my destroystack isnt declared?
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int main()
{
string name;
double gpa;
double high = 0;
stack<string>names;
for (int ...
-1
votes
2answers
96 views
quick java question
im currently learning stacks in java and have a quick question. what will the following code display if the stack is empty? my guess would be "true"?
System.out.println(st.isEmpty());
-3
votes
2answers
290 views
Need help with Java programming- Stack Class- Symbol Checker [closed]
I am really new to programming, and its not my major. I was supposed to take this class. I had no idea that the instructor was going to give us a programming assignment, so I need help with this ...