Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
stack
- Page 1
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
14 Hours Ago
by Dani
… the programming space (where people abandoned us for sites like
Stack
Overflow).
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
13 Hours Ago
by Reverend Jim
>(where people abandoned us for sites like
Stack
Overflow) But there are still a few dinosaurs around who can answer some programming questions.
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
9 Hours Ago
by Dani
> >(where people abandoned us for sites like
Stack
Overflow) > > But there are still a few dinosaurs …
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
3 Days Ago
by JackRyan248
… essential for version control. I also find VS Code and
Stack
Overflow helpful for efficiency. What other tools do you all…
Re: How much does it cost to build an Food Delivery Android app?
Programming
Mobile Development
2 Months Ago
by marksmiths
… on several factors, including features, development team location, and technology
stack
. Here's a breakdown: 1. Basic Food Delivery App ($10…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
… inconsistent user experience depending upon the end-user's tech
stack
. That's a different beast entirely. In that case, yes…
Stack Intersection C++
Programming
Software Development
15 Years Ago
by warbird43
Stack
Intersection by Fraz Jamshed
Re: STACK AND QUEUE ("Real Life Examples")
Programming
Computer Science
10 Years Ago
by Arshad_2
…deletion takes place at only one place called TOP.
Stack
is also called as LIFO or restricted list. **…situations, as you can see in the picture of
stack
of books, One can add a new book …to an existing
stack
of books only at its top and no where… cannot be added in the middle of the
stack
so one has to remove all the books …
Re: STACK AND QUEUE ("Real Life Examples")
Programming
Computer Science
15 Years Ago
by Tirana
stack
- a
stack
of books queue- a print queue, a bus queue
Re: Stack
Programming
Software Development
15 Years Ago
by tarheelfan_08
… d; mileage = e;} Car(string, string, string, int, int); //
Stack
Information //mutator and accessor functions void setMake(string); void setModel…(!top) return true; else return false; } int main() { Car
stack
; string catchWord; string catchWord2; string catchWord3; int catchVal; int catchVal2…
Re: Stack
Programming
Software Development
15 Years Ago
by tarheelfan_08
… = e;} Car(string, string, string, int, int); //
Stack
Information //mutator and accessor functions void setMake(string); void setModel… return true; else return false; } int main() { Car
stack
; string catchWord; string catchWord2; string catchWord3; int catchVal; int…
Re: Stack
Programming
Software Development
15 Years Ago
by tarheelfan_08
… d; mileage = e;} Car(string, string, string, int, int); //
Stack
Information //mutator and accessor functions void setMake(string); void setModel…(!top) return true; else return false; } int main() { Car
stack
; string catchWord; string catchWord2; string catchWord3; int catchVal; int catchVal2…
Re: stack
Programming
Software Development
18 Years Ago
by rowly
…[/COLOR][COLOR=#000000] *stack_strings) //push string into the
stack
[/COLOR] { //check if pushing not //successfull return …void[/COLOR][COLOR=#000000]) //pop characters from the
stack
[/COLOR] { //return NONE if pulling isnt successfull…
Re: Stack
Programming
9 Years Ago
by David W
… same line. There are many ways one might implement a
stack
. One might be to use an array ... and to … into the array after every element is 'pushed' onto the
stack
, then to retreat the pointer after every pop. Another common… linked list and push_front to put new elements on the
stack
... then to pop_front ... to pop them off. If you need…
Re: Stack
Programming
9 Years Ago
by rubberman
… the new element at the "top" of the
stack
. Then, when you "pop" an element off the… be very expensive in terms of overhead, especially if the
stack
gets large. Usually we either use an array, where "… are using C++, the STL (standard template library) has a
stack
collection type that handles all of the gnarly stuff that…
Re: Stack
Programming
Software Development
16 Years Ago
by javaAddict
… basic concept. When you put items in a
stack
you place each one of them after the other… you try to take these items from the
stack
you can only take the last one you entered… not the first. If you have a
stack
of plates you put one on top of the…last. In java, you can store objects in a
stack
the same way. Assume you call push several times…
Re: Stack
Programming
Software Development
15 Years Ago
by tarheelfan_08
…car int IntStackSize; int top; //top of
stack
public: //Constructor that will set information for …constructor Car(string, string, string, int, int); //
Stack
Information void push(int); void pop(int &); bool… { top++; Car_array[top] = num; } } //Set up
Stack
Pop void Car::pop(int &num) { if (isEmpty()) …
Re: stack .. bottom to top
Programming
Software Development
13 Years Ago
by programing
…cin>>item;
stack
*Newnode = new
stack
; Newnode-> info =…Top = Newnode; } } int Pop( ) { struct
stack
*t; item = Top -> info; t = Top…
Re: Stack
Programming
Software Development
16 Years Ago
by puneetkay
… me understand more about "
stack
" in java?? i am still confused about
stack
.push or
stack
.pop.....can you help me…]http://java.sun.com/javase/6/docs/api/java/util/
Stack
.html[/url] Hope this will clear your confusion :) Regards…
Stack
Programming
Software Development
16 Years Ago
by letlet_pogs
hello guy,,can you really help me understand more about "
stack
" in java?? i am still confused about
stack
.push or
stack
.pop.....can you help me understand it more??..thank you again...
stack
Programming
Software Development
12 Years Ago
by pmphaololi
… KEY TO VISIT MORE PAGES. THINK OF THIS AS A
STACK
OF WEB-PAGES HISTORY,WHERE THE PAGE URL ARE STRING… OBJECT,AND EACH PAGE AS AN ELEMENT IN A
STACK
.THE TASK IS TO IMPLEMENT THE PAGES HISTORY USING THE…
Re: stack
Programming
Software Development
18 Years Ago
by ~s.o.s~
Looks like you have got your specification of
stack
wrong out there. Please take a look [URL="… dont take any parameters,so how would they know which
stack
to perform those operations on ? [*]Also write the helper …functions like "is_empty(
Stack
a )" and "is_full(
Stack
b )" to perform easy runtime checking…
Re: Stack
Programming
Software Development
15 Years Ago
by wardeworth
As we know in computer, a
stack
is a LIFO (Last In First out) which has abstract data type. In The C++
Stack
is a container adapter that gives the programmer the functionality of a
stack
– specifically, a FILO (first-in, last-out) data structure. Nice and informative post.
Re: stack .. bottom to top
Programming
Software Development
13 Years Ago
by Narue
Use a second
stack
. Pop each item off of the first
stack
, push them onto the second
stack
, then pop items off the second
stack
and print them until it's empty.
Re: stack
Programming
Software Development
18 Years Ago
by rowly
…] [COLOR=#000000][COLOR=blue]int[/COLOR] current // buttom of the
stack
[/COLOR] [COLOR=#0000ff]int[/COLOR][COLOR=#000000] depth; // the depth… of the
stack
[/COLOR] [COLOR=#000000]if the depth of the
stack
< stk_layer[100][/COLOR] [COLOR=#000000…
Re: stack
Programming
Software Development
18 Years Ago
by Salem
So if you want at most 100 chars, then it would be [code] char *
stack
= malloc ( max * sizeof *
stack
); base = 0; limit = max; [/code] Adding stuff is [INLINECODE]
stack
[base++] = newValue;[/INLINECODE] Checking is just [INLINECODE]if ( base == limit )[/INLINECODE]
Stack
Programming
Software Development
15 Years Ago
by tarheelfan_08
… I would like to convert my current array into a
stack
. Does anyone know how to or can give me some…] Repost [url]http://www.dreamincode.net/forums/topic/169276-custom-
stack
/[/url]
Re: Stack
Programming
9 Years Ago
by David W
… maze, and recording every step by pushing them onto a
stack
... but you reach a dead end ... so now ... you …can *backtrack* ... by popping the former moves from the
stack
, going in the opposite direction you did on the way… begin to push all those next forward moves onto the
stack
... to be able to*backtrack* again ...if needed. Note also…
Re: stack
Programming
Software Development
18 Years Ago
by rowly
… use what u just told me ! "is_empty(
Stack
a )" and "is_full(
Stack
b )" " thanks alote mate and…
Re: Stack
Programming
9 Years Ago
by rubberman
So, using a
stack
to push the words of a sentence on, will reverse …" in to discrete words and push them onto a
stack
, as you pop them off and build a resulting string…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC