Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
stack
- Page 1
Hi everyone, I'm Ron McLeod
Community Center
Say Hello!
1 Month Ago
by Ron McLeod
… solutions, often using a Java/Quarkus/GraalVM/Buildah/Podman/Linux
stack
.
I looking for long term cooperation possible client.
Programming
Software Development
1 Month Ago
by Stiven_1
I am a full-
stack
full-time developer. I have 5 years of development experience and My basic skills are Blockchain, TypeScript, ReactJS, Shopify. I am a full-time dev, so I can answer your inquiries at any time. I can work on weekends if needed and communicate fluently in English.
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
1 Month 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: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
1 Month 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
1 Month 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
1 Month Ago
by Dani
> >(where people abandoned us for sites like
Stack
Overflow) > > But there are still a few dinosaurs …
Re: Hi everyone, I'm Ron McLeod
Community Center
Say Hello!
1 Month Ago
by Dani
Hi Ron and welcome to DaniWeb! Thanks for taking the time to sign up and join us in our little corner of the web. Something tells me that @Reverend Jim and @rproffitt will be along any moment to greet you as well ... ;)
Re: Hi everyone, I'm Ron McLeod
Community Center
Say Hello!
1 Month Ago
by Reverend Jim
You betcha. Welcome to Daniweb.
Re: I looking for long term cooperation possible client.
Programming
Software Development
1 Month Ago
by Dani
You might want to check out Upwork or Toptal to get freelance development work. May I ask what the code you provided here does? It seems to just be a constructor function with some getters and setters, but is missing the rest of it. Was it written by ChatGPT?
Re: I looking for long term cooperation possible client.
Programming
Software Development
1 Month Ago
by Stiven_1
Sorry, I used a code I had practiced before to sign up quickly. This code is This JavaScript code simulates a basic blockchain — like a mini version of Bitcoin — without a network or mining. It helps you understand how blocks are linked and verified.
Re: I looking for long term cooperation possible client.
Programming
Software Development
1 Month Ago
by Dani
What does the crypto class look like?
Re: I looking for long term cooperation possible client.
Programming
Software Development
1 Month Ago
by Stiven_1
I hope learn more about you.
Re: I looking for long term cooperation possible client.
Programming
Software Development
1 Month Ago
by Dani
> I hope learn more about you. > This is me: https://www.daniweb.com/welcome/about
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
14 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.
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC