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

-1
votes
1answer
20 views

Why use the stack? Why not just heap? - C/C++

From what I've learned about dynamic memory allocation, the heap seems just to be an abundant pool of memory that you can use as much as you want of. My question is, why don't you just always use the ...
0
votes
0answers
4 views

Why in the DOS header of a PE file the SP is B8?

In every EXE file in Windows we have a DOS header and one of the information specified here is the initial SP, which in every executable's binary I analyzed is B8 00. Is there any particular reason ...
0
votes
3answers
52 views

C- Fix Stack overflow in Recursion

A code in C to find maximum of an array using divide and conquer but it keeps throwing "stack overflow exception" . Help would be appreciated! int a[10]; int find(int l,int h) { int x; ...
1
vote
0answers
13 views

Qt: modifying z-order between two non-sibling graphical items

I have a QGraphicsScene where I'm inserting various QGraphicsItem objects like rectangles or polygons. The idea is to represent an electronic diagram with a RectItem for each component, a ...
-1
votes
0answers
10 views

Stack pointer initialisation

In a controller if I want to define the stack memory. I need to intialise the stack pointer. But is it poassible that stack poinetr is not pre-defined and user has to configure some memory location as ...
0
votes
0answers
9 views

Method/function return type in call stack

I was trying to find the existence of return type constraint in method call stack. Event any language you use, (java / c++), we specify the return type of method/function. When this method enters into ...
0
votes
1answer
25 views

Pass a buffer and the size of the buffer as parameters

I have a function who fills an empty buffer (char*). It looks like : void Matrix::toString(char* buffer, int sizeBuffer) const{ char buf[sizeBuffer]; //some code to fill buf //copy buf ...
1
vote
0answers
16 views

FCL Stack class thread safety and it's version field

I discovered an odd implementation of Stack class in FCL. As I see, Stack class provides SyncRoot property intended to allow external users to block the entire collection and work with it in a thread ...
2
votes
0answers
80 views

Object return in C++ [duplicate]

When returning object, I thought returning pointer or reference is the right way because temporary object is created when returning an object. In this example, hello() function returns an object of ...
0
votes
2answers
72 views

K&R possible bug in polish calculator

I'm not sure where to post this but I think I found a pretty major bug in K&R's polish calculator program. Basically, when you perform an operation, two values get popped while only the result ...
-2
votes
2answers
134 views

In C, can I delete a variable from the stack? [closed]

I am a noob student hobby-ist and I have a technical difficulty. I want my C program to use only stack space because it's faster that heap space. Also, I use [arrays of] static stack variables ...
-3
votes
4answers
56 views

Creating a stack with an array, what am I doing wrong?

Pretty simple idea, I am just not sure why it won't work. I am getting an error when I call Stack b = new Stack(5); in main. Here is main public class Test { public static void main(String[] args) ...
-1
votes
0answers
19 views

ephemeral ports with TCP/UDP IP network stack

Slowly been trying to implement my own network stack on a hobby OS I'm working on. I've run into a bit of a problem, and was wondering if a standard exists or what to do in the following situation. ...
1
vote
2answers
99 views

intel x86 - why does -4(%ebp) refers to nothing?

In many examples when I compile a c-function (such as the sorting algorithm shell sort) the stackaddress (i gues it is called?) ebp-4 / -4(%ebp) / [ebp]-4 or whatever, which, as I understand, is ...
0
votes
2answers
46 views

Buffer overflow wrong variable changing value

#include <stdio.h> #include <stdlib.h> int test(void) { int a=0,b=0; char buf[4]; gets(buf); printf("a:%d b:%d",a,b); } int main() { test(); return 0; } Question is why ...
0
votes
1answer
49 views

Pop from Empty list error

I am trying to push elements from a list to a stack. Here is the code: #!/usr/bin/python class Stack : def __init__(self) : self.items = [] def push(self, item) : ...
-1
votes
1answer
29 views

stack columns in dataframe, and also stack index column

I have a problem stacking columns from a dataframe in pandas and in addition stack a column and making it an indexcolumn that not contains unique values. >>> ds respondent brand engine ...
1
vote
1answer
37 views

I need some help understanding implementing queue using stack

I found the code which is below. I just want to know how does the "else" part in remove function works. If anybody can elaborate the steps for me, I would be thankful. insert(E value) { ...
0
votes
0answers
28 views

Setting Resolution between the tiff-pages with libtiff

I'm writting tiff-stacks in labview with libtiff. The stacks is perfectly written. At last I writte the x- and y-resolution into the header. I have 10um per pixel resolution. But how can I set a ...
1
vote
3answers
72 views

Out of local stack when applying recursion

The context, first. What I am trying to modelate with prolog are two separated graphs, both represent a group of friends, so in both of them I can put the relation friend(X,Y), and, because it's ...
3
votes
3answers
52 views

How to get the caller class name inside a function of another class in python?

My objective is to stimulate a sequence diagram of an application for this i need the information about a caller and callee class names during runtime. I can successfully retive the caller function ...
0
votes
0answers
18 views

bandwidth monitoring with MRTG, no dat from switch stacks

I'm trying to set up a monitoring system and have been asked to add all of our uplinks in it. most of our switches consists of stacks of about 7 switches. These stacks aren't returning any data. I ...
0
votes
4answers
38 views

Is it possible to write an _alloca-like function in C?

The function _alloca (alloca) allocates memory on the stack, which does not require "free". Is it possible to write a function that allocates on the stack in C? Another way of phrasing it: _alloca ...
1
vote
1answer
29 views

Throwing elements of a node list on stack

I'm using Java and I have a list of nodes, which I need on a Stack in the order from last to first, using List. Example: my list is {node1,node2,node3} my stack is supposed to be { node1, node2, ...
0
votes
1answer
31 views

Stacking z-index issues using :before

For a live demo I've setup the fiddle here http://jsfiddle.net/OwenMelbz/3PQHa/ Basically I'm trying to create a stack of 2 "photos" - Using purely CSS, cant touch the markup at the moment, but Its ...
1
vote
3answers
89 views

Using STL's list object for Stack creation

I want to create a list of stacks in C++ but the compiler gives me some error messages: #include <list> #include <stack> class cName { [...] ...
1
vote
4answers
82 views

Declare large array on Stack

I am using Dev C++ to write a simulation program. For it, I need to declare a single dimensional array with the data type double. It contains 4200000 elements - like double n[4200000]. The compiler ...
0
votes
1answer
33 views

Implementing Queue With Two Stacks - Dequeuing Test Issue?

I'm trying to implement a queue with two stacks for purposes of understanding both data structures a little better. I have the below, with the main function serving as a test: #include ...
-1
votes
0answers
20 views

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

I have the following piece of code: do {     charDeviceName[100]=NULL;     Robot.push_back(Device());     WideCharToMultiByte(CP_ACP,0,m_device_info.szName,-1, charDeviceName,100,&DefChar, ...
0
votes
0answers
17 views

Each image in image stack has an opacity percentage as a fraction of total images

I'm building my own modal (lightbox, pop up) for an image gallery — similar I guess to Fancybox, for example. I have a page of images, each image represents a specific work or project — if you click ...
1
vote
1answer
51 views

How can I compare entries in linked lists?

I am doing a C project that manages the number of rooms in a building, where I can either choose to reserve or pre-reserve a room. For that, I will ask the user to input some data (name, the ammount ...
0
votes
2answers
67 views

Design a stack with operations on middle element

How to implement a stack which will support following operations in O(1) time complexity? Push which adds an element to the top of stack. Pop which removes an element from top of stack. Find Middle ...
0
votes
2answers
74 views

Variables on heap and stack

I've been trying to look for the answer to this question, but its a little tricky to me. So it goes! int square(int* a){ return (*a)*(*a) } int main(){ int b = 20; ...
4
votes
2answers
67 views

Is there a bug in java.util.Stack's Iterator?

Today I was trying to push in util.Stack class and then use the Iterator to iterate(without using pop) through the items. I was expecting LIFO property but got surprised. Here is the code that I was ...
0
votes
0answers
9 views

JQPLOT Bar chart - anyone able to get a bar filled with a pattern?

Playing around with JQPLOT (http://www.jqplot.com/index.php). Creating a stacked bar chart and don't see an option to fill in the bar with some kind of pattern like these -> ...
3
votes
2answers
57 views

Error: deque iterator not dereferenceable

I'm trying to create a program that converts an arithmetic expression from infix to postfix form. As long as I don't call the "infixToPostFix" function, the program runs fine. But when I try to run ...
2
votes
0answers
36 views

Does the Linux kernel ever free memory allocated for the user mode stack?

I'm preparing for the OS exam and just realized that I don't know whether the kernel will ever unmap page table entries allocated for user mode stacks? I have not been able to find an answer anywhere ...
0
votes
1answer
25 views

Why Always navigate to Home Page View-ios

My app contain 5 xib When i navigate to Home to 2nd View and BACK to Home is work fine But From 3rd View and Tap for BACK its Every Time Push to Home View, I have Try this -(IBAction)doBack { ...
4
votes
1answer
29 views

Javascript closures on heap or stack?

Where does JavaScript (according to the standard) store closures: heap or stack? Is there a third explicit place for closures? Thank you in advance
0
votes
0answers
7 views

UPNP: How to set the name of a ContainerDiscovery service?

I'm using the Intel UPNP Developer Tools. Basically I've taken the ContainerDiscovery service which is also used in the "AV Media Controller" Sample Application. It can find available UPNP media ...
3
votes
1answer
22 views

Why is the (non-generic) Stack class implemented as a circular buffer? (and what does that mean exactly)?

The non-generic Stack class states "Stack is implemented as a circular buffer." I don't understand the application of a circular buffer to a Stack use case. I also don't understand how stack could be ...
-1
votes
2answers
59 views

Strange behavior with stack not popping correctly

I'm trying to refresh my memory of C. I have a simple program that checks HTML tags in a text file to make sure that they all match up with each other. I use a stack for this. Here's the code in ...
0
votes
0answers
12 views

Exiting out of a recursive function in vb.net 4.0

I have written the following recursive function that accepts a comma separated string and a number (R), and then returns the permutations of that string (taken R at a time) to a list. Private ...
1
vote
5answers
63 views

Do stacks have indexes?

Yeah, so one of my friends said we can use indexes to traverse a stack, but I think he's wrong. Basically, I have a homework in which I had to write an algorithm using an array. I had to use two for ...
-1
votes
1answer
40 views

NASM Stack Error? Simple Multiplication Program

I'm learning NASM at the moment and am making a simple program that does multiplication of any user-input variables through shifting and addition. I've been running into a series of issues: My ...
0
votes
0answers
22 views

Application of Implementing 3 Stacks in single array

Well there is lot of discussion about implementing 3 [ or 2 stacks ] in a single array. but whats the real need or application for implementing stacks like that? can't we allot memory as 3 seperate ...
1
vote
3answers
109 views

A dangerous practice?

Is this dangerous by any means? I have no knowledge of other way of doing it but it seems very suspicious. class cA { public: cA(){} ~cA(){} int a; //say class have tons of members.. }; ...
0
votes
1answer
22 views

how to solve overflow errors on mikroC for PIC?

My program has several images, I want to do something like a menu with LCD and a keypad. It was working fine untill the moment that I got two erros: > Recursion or cross-calling of 'lcd_write' ...
0
votes
0answers
31 views

how do you choose between a stack and a queue

I have understood the logic of FIFO and LIFO and how to work with stacks and queues in Python. What I don't understand is what will make me choose a stack versus a queue in a search problem. Does it ...
0
votes
1answer
37 views

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

I have faced this problem : Run-Time Check Failure #2 - Stack around the variable 's' was corrupted in visual studio 12 . I also try this in codeblock but faced same problem . I run my code also in ...

1 2 3 4 5 55