A stack is a last in, first out (LIFO) abstract data type and data structure. Perhaps the most common use of stacks is to store subroutine arguments and return addresses.

learn more… | top users | synonyms

0
votes
1answer
10 views

Increase stack size in Eclipse/prolog/fd

We have to solve the liars problem in prolog, in several environments with constraints (ic, fd, SWI-prolog, GNU-prolog, NaxosSolver, etc.). I have used tail recursion (I think) and as many cuts as I ...
4
votes
3answers
35 views

Matlab: Access the same element in all stacked structures

I have a stacked structure with data, that looks something like this: a(1) = struct('X',rand(10,1),'Y',rand(10,1),'Time',(1:1:10)') a(2) = struct('X',rand(10,1),'Y',rand(10,1),'Time',(1:1:10)') ...
0
votes
1answer
26 views

Pandas stack unstack pivot hierarchical index - reshape dataframe

I have massaged a dataframe so it looks like this: 123 456 789 0AB CDE FGH ... ,,, I would like to transform it, so it looks like this: 123789CDE... 4560ABFGH,,, The pattern is this: 123 789 ...
-5
votes
0answers
60 views

Reverse Polish Notation Calculator: User Input & Stack Class [closed]

This homework assignment seemed easy... A Reverse Polish Notation Calculator as follows: In this program you will create a stack (a first in last out) data structure to hold the numbers. ...
0
votes
2answers
28 views

Stack runtime error

#include <stack> #include <functional> int main() { std::stack<std::function<int()>> s; s.push(main); return s.top()(); } I get the following diagnostic: ...
1
vote
2answers
45 views

Buffer Overflow Should Work, But Gives SIGSEGV Error

I was watching a tutorial on how to do a buffer overflow on linux. Everything was working great until I tried running the final thing. I searched and search on google but found nothing that worked. ...
0
votes
1answer
18 views

No Input while sorting a stack

There are 3 stacks - A, B, C Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed: push, pop, top, is_empty, create We need ...
0
votes
1answer
18 views

Stack raster in a loop

I need to stack some rasters in a loop like: for(month in 1:12){ . . . "some algorithm spiting out a raster called 'sm_esa'" sm_esa_stack<-stack(sm_esa) } In the end I'd like to create a stack ...
0
votes
0answers
26 views

There is nothing innately slow about GolfScript. (…) Analysis could be done to remove most if not all stack use. Explain?

From http://www.golfscript.com/golfscript/syntax.html , Ruby is slow to start with so GolfScript is even slower. There is nothing innately slow about GolfScript. Except for the string evaluate ...
1
vote
1answer
78 views

Java Stack Overflow when reading Object

I'm trying to load an object into Java that I had saved from a program I had made. When loading it in, Java threw a Stack Overflow Error. The object I'm loading in had about a thousand entry object ...
2
votes
2answers
96 views

Can I end up with a pointer to an unintended location by passing a pointer to a stack variable to a function in C++?

I know compiler optimization can sometimes result in the stack frames volatility. So my question is if it is always safe to create a stack pointer in c++ and pass it to another function and expect it ...
0
votes
2answers
42 views

I keep getting stack overflow error and have tried fixing this for 3 days. I am creating a media library for CDs

//Long story short, trying to do a media library, but I am at a 100% Complete loss on why I cannot get this data to work. This is my Main.cpp #include "CDclass.h" bool fills = true;//Public Switch ...
1
vote
1answer
95 views

C# How to make Stack function like List?

As part of the requirements, I'm trying to modify my code so that it can behave the same way as my original code however I can't seem to figure it out. I've already done some modification and it ...
0
votes
1answer
28 views

Sorting two stacks by using structs

There are 3 stacks - A, B, C Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed: push, pop, top, is_empty, create We need ...
0
votes
1answer
58 views

Stack memory addresses in Shellcode

I was reading a basic article on writing a shellcode (execve using stack method) here: http://hackoftheday.securitytube.net/2013/04/demystifying-execve-shellcode-stack.html In step 6: It pushes a ...
1
vote
4answers
40 views

C# Stack not updating

For some reason the code that I modified doesn't seem to be functioning correctly. There were no exception error when debugging however it does not function the same as in the original code (list) - ...
0
votes
2answers
24 views

How to find the maximum value in an ADT stack of integers in an array

Is there a function for array based stacks that allow you to find the maximum value in a stack of integers?
1
vote
2answers
16 views

Stacking Numpy Arrays repeatedly

This might be an easy question, nevertheless I'm trying to get an answer ;) I want to create a 3D numpy array, which is a repeated copy of another subarray, with a given number of copys. In 1-D this ...
1
vote
2answers
32 views

Does the distance between a program's stack and data segment have an effect on CPU caching?

I've read that on linux, program memory layout can be broadly visualized as follows (and I assume it's similar on most other operating systems): Now, I'm not sure if I remember correctly, but I ...
2
votes
2answers
143 views

Does execution stack and thread's stack and local variable list refer to different stacks?

A value type may be stored in a thread's stack, and IL runs in the execution stack (abstract concept). int y=0; int a=0; int b=0; int x = y + (a - b); IL_0001: ldc.i4.0 IL_0002: stloc.0 ...
0
votes
0answers
25 views

[CFURL isKindOfClass:]: message sent to deallocated instance

I used EGOImageView in a tableView to get online images,but always crush when scrolling the table.Below is the crush message and stack info: 2013-05-16 22:43:37.530 Quxiang[71833:c07] * -[CFURL ...
3
votes
3answers
56 views

Which goes on the stack or heap?

I am doing some studying and I came across a question that asks to show the correct memory diagram of the following code: int [] d1 = new int[5]; d1[0] = 3; Integer [] d2 = new Integer[5]; d2[0] = ...
1
vote
1answer
44 views

stack and heap diagram of method that is assigned to reference variable

How could we draw the stack and heap diagram of following code: Ball b1; Ball b2 = new Ball(); Ball b3 = new Ball(); b1= doThing(); b3 = doThings(); I know call methed (e.g doThing()) will be in ...
0
votes
0answers
6 views

notepad search and replace with stack entry

Using Notepad++, I am searching for an HTML tag and trying to replace it with a text string from a stack. This starts with: <div class="title">Book1</div><a href="#"> <div ...
0
votes
1answer
61 views

Python: I'm misunderstanding stack logic, but I'm not sure where [closed]

I have a function that is evaluating an infix expression via use of stacks. (Bet you've never seen THIS one before.) It takes an expression in list format, wherein each item in the list is a single ...
-3
votes
3answers
66 views

Adding all values of 2 stacks to 1 stack and sorting them

There are 3 stacks - A, B, C Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed: push pop top is_empty create We need to ...
0
votes
0answers
24 views

Ordering item stack gallery widget android

i want to make gallery with custom stack item. But i can't create stack with my requirement. I've try to setImageSpace but i think that method can solved my problem. This is my requirement stack item ...
0
votes
1answer
54 views

Template Stack and LIFO C++

So I'm trying to learn about Templates and the Fifo and Lifo stack stuff. I've been playing around with some code that deals with this, and I can get the int data to do what I want for testing but I ...
4
votes
2answers
97 views

Select rasters in stack based on layer partial name match

I have a stack of rasters (one per species) and then I have a data frame with lat/long columns along with a species name. fls = list.files(pattern="median") s <- stack(fls) ...
0
votes
1answer
20 views

Describe the main methods associated with the Queue abstract data type and discuss their relationship with the stack data structure

I am studying for an exam and I'm a bit confused as to how to answer this question.The way I interpret it is that they want to know the methods of stack which are,offer peek poll size isEmpty and ...
2
votes
1answer
49 views

Two stack in assembly

I am tring to do a game in assembly(something simple, not to complicated kind of snake) and I need two stacks for that. I will be glad if you could show me how to create and use two stacks. Just for ...
-1
votes
0answers
29 views

How to read thread context from kernel module

I can intercept pagefaults in my kernel module(linux). I need to read ESP register, which the process had before switching the context. How can i do it? I tried current->thread.sp, but it doesn't ...
-2
votes
1answer
69 views

How to implement a Stack in LISP language [closed]

I am still learning Lisp language and I need to understand how to implement a stack with Lisp (Need push-pop-peek functions.). In addition I have found this code when I am searching for help. But I am ...
0
votes
2answers
44 views

Creating a stack from a circular linked list in order to print the list reversely [closed]

im solving some stuff for practice for my test. The question in my text book asks me to print the stuff in the circular linked list reversely. so my idea was to create a stack, move the stuff to the ...
1
vote
1answer
149 views

Custom Stack<T> made with IEnumerable<T> and Array?

I've got this problem that I've been trying to figure out. I am trying to make the CustomStack act like Stack, only implementing the Push(T), Pop(), Peek(), and Clear() methods. I've got this code, ...
0
votes
2answers
33 views

Catching FileNotFound in stack trace?

This might seem like a weird question, but is it possible to "catch"(know) if there is a filenotfoundexception in the stack trace? I am asking this because the class I am implementing (not mine) does ...
0
votes
3answers
44 views

Android: Clear Activity History

I've faced with one problem - clearing activity history. I have the following consequence where my problem appears: A(SplashScreen)->B(GuestScreen)->C(Screen for signed users)->Press Home ...
0
votes
0answers
6 views

Photoshop scripting. Opening & Saving overlapping image stacks

I’ve been getting more and more into star photography and have recently been trying to develop a new style of stacking the photos and creating time-lapse videos from the stacked photos. Example: ...
0
votes
3answers
28 views

Java disable stack trace on a specific call?

I want to disable one error message produces by a socket timeout, because it's filling my console (Linux, terminal). The code: public ThreadListenResponseQuery(DatagramSocket socket){ this.socket ...
0
votes
1answer
24 views

Getting request for member not a structure or union error

I am trying to implement a stack. I have the following stack struct: struct stackNode { char data; struct stackNode *nextPtr; }; typedef struct stackNode StackNode; typedef StackNode ...
0
votes
1answer
19 views

ParentStackBuilder Notification Android

I'm developing an Android app and I'm struggling to get it behaves in the right way regarding notifications to the user. I followed literally this tutorial but I can't reproduce this case: Suppose ...
-3
votes
0answers
30 views

transfer the integers into A to B in descending order [closed]

define two integer stacks(say A and B).store integers in A.transfer the integers into B such that in B,they are in descending order(with out using any other data structure). In c language
3
votes
2answers
69 views

Creating a stack in C, structure for nodes

I have been given a structure for the nodes that will make up my stack but I am having trouble understanding it. struct stackNode { char data; struct stackNode *nextPtr; }; typedef struct ...
2
votes
2answers
75 views

how to allocate pointer to pointer on stack and how on heap?

Is this correct way to allocate pointer to pointer on stack and on heap? If not, then what is a correct way to do it? int a=7; int* mrPointer=&a; *mrPointer; int** iptr; // iptr is on stack ...
-1
votes
0answers
94 views

Python stack ADT help evaluate infix expression

I am working on a project for school and our task is to evaluate a infix expression with a stack. We must use the stack class provided for us: class Stack: def __init__(self): self.theStack=[] ...
2
votes
1answer
59 views

PostScript execution of nested procedures

(I'm back with yet another question :-) ) Given the following PostScript code: /riverside { 5 pop } def /star { 6 pop 2 {riverside} repeat } def star I'm wondering how nested procedures should be ...
0
votes
0answers
55 views

Run-Time Check Failure #2 - Stack around the variable 'ch' was corrupted

void CountLetter() { Letters MyObj; int count=-1; MyObj.Display(count); char ch; cout<<"\nEnter Sentence:"<<endl; while((ch=getch())!='\r') { switch(ch) ...
0
votes
1answer
19 views

Can stack overflows be mitigated by having arrays grow upward instead of down into the return address / stack frame?

Can stack overflows be mitigated by having arrays grow upward instead of down into the return address / stack frame?
-1
votes
0answers
29 views

Heap overflow vs stack overflow [migrated]

So as a general rule to avoid stack overflow, big objects should be allocated to the heap(correct me if I am wrong). But since the heap and the stack expand towards each other, wouldn't this cause ...
0
votes
0answers
18 views

stack level too deep - using scaffold generated code after modify of Client.all to Client.limit(10)

MySQL database has 27,000 rows. Initial client display is list in table format. I modified the controller from Client.all to Client.limit(10) to reduce the initial result set during initial ...

1 2 3 4 5 54