What does Stack mean?
Definitions for Stack
stækStack
Here are all the possible meanings and translations of the word Stack.
Princeton's WordNet
stacknoun
an orderly pile
batch, deal, flock, good deal, great deal, hatful, heap, lot, mass, mess, mickle, mint, mountain, muckle, passel, peck, pile, plenty, pot, quite a little, raft, sight, slew, spate, stack, tidy sum, wadnoun
(often followed by `of') a large number or amount or extent
"a batch of letters"; "a deal of trouble"; "a lot of money"; "he made a mint on the stock market"; "see the rest of the winners in our huge passel of photos"; "it must have cost plenty"; "a slew of journalists"; "a wad of money"
push-down list, push-down stack, stacknoun
a list in which the next item to be removed is the item most recently stored (LIFO)
smokestack, stacknoun
a large tall chimney through which combustion gases and smoke can be evacuated
push-down storage, push-down store, stackverb
a storage device that handles data so that the next item to be retrieved is the item most recently stored (LIFO)
stackverb
load or cover with stacks
"stack a truck with boxes"
stack, pile, heapverb
arrange in stacks
"heap firewood around the fireplace"; "stack your books up on the shelves"
stackverb
arrange the order of so as to increase one's winning chances
"stack the deck of cards"
GCIDE
Stacknoun
(Computer programming) (a) A section of memory in a computer used for temporary storage of data, in which the last datum stored is the first retrieved. (b) A data structure within random-access memory used to simulate a hardware stack; as, a push-down stack.
Stacknoun
pl. The section of a library containing shelves which hold books less frequently requested.
Stacknoun
Hence: An orderly pile of any type of object, indefinite in quantity; -- used especially of piles of wood. A stack is usually more orderly than a pile
Stackverb
Specifically: To place in a vertical arrangement so that each item in a pile is resting on top of another item in the pile, except for the bottom item; as, to stack the papers neatly on the desk; to stack the bricks.
Stackverb
To select or arrange dishonestly so as to achieve an unfair advantage; as, to stack a deck of cards; to stack a jury with persons prejudiced against the defendant.
Wiktionary
stacknoun
A large pile of hay, grain, straw, or the like, larger at the bottom than the top, sometimes covered with thatch.
stacknoun
A pile of similar objects, each directly on top of the last.
Please bring me a chair from that stack in the corner.
stacknoun
A pile of poles or wood, indefinite in quantity.
stacknoun
A pile of wood containing 108 cubic feet. (~3 m)
stacknoun
A smokestack.
stacknoun
A linear data structure in which the last datum stored is the first retrieved; a LIFO queue.
stacknoun
A portion of computer memory occupied by a stack data structure, particularly (the stack) that portion of main memory manipulated during machine language procedure call related instructions.
stacknoun
A coastal landform, consisting of a large vertical column of rock in the sea.
stacknoun
Compactly spaced bookshelves used to house large collections of books.
stackverb
To arrange in a stack, or to add to an existing stack.
Please stack those chairs in the corner.
stackverb
To arrange the cards in a deck in a particular manner.
This is the third hand in a row you've drawn a four-of-a-kind. Someone is stacking the deck!
stackverb
To deliberately distort the composition of (an assembly, committee, etc.).
The Government was accused of stacking the parliamentary committee.
stackverb
To fall or crash.
Jim couldn't make it today as he stacked his car on the weekend.
stacknoun
A large amount of an object.
They paid him a stack of money to keep quiet.
stacknoun
A pile of rifles or muskets in a cone shape.
stacknoun
The amount of money a player has on the table.
stacknoun
A vertical drain pipe.
stacknoun
A fall or crash, a prang.
Etymology: Compare Swedish stacka, Danish stakke.
Webster Dictionary
Stackadjective
a large pile of hay, grain, straw, or the like, usually of a nearly conical form, but sometimes rectangular or oblong, contracted at the top to a point or ridge, and sometimes covered with thatch
Stackadjective
a pile of poles or wood, indefinite in quantity
Stackadjective
a pile of wood containing 108 cubic feet
Stackadjective
a number of flues embodied in one structure, rising above the roof. Hence:
Stackadjective
any single insulated and prominent structure, or upright pipe, which affords a conduit for smoke; as, the brick smokestack of a factory; the smokestack of a steam vessel
Stackadjective
a section of memory in a computer used for temporary storage of data, in which the last datum stored is the first retrieved
Stackadjective
a data structure within random-access memory used to simulate a hardware stack; as, a push-down stack
Stacknoun
to lay in a conical or other pile; to make into a large pile; as, to stack hay, cornstalks, or grain; to stack or place wood
Etymology: [Icel. stakkr; akin to Sw. stack, Dan. stak. Cf. Stake.]
Freebase
Stack
In computer science, a stack is a particular kind of abstract data type or collection in which the principal operations on the collection are the addition of an entity to the collection, known as push and removal of an entity, known as pop. The relation between the push and pop operations is such that the stack is a Last-In-First-Out data structure. In a LIFO data structure, the last element added to the structure must be the first one to be removed. This is equivalent to the requirement that, considered as a linear data structure, or more abstractly a sequential collection, the push and pop operations occur only at one end of the structure, referred to as the top of the stack. Often a peek or top operation is also implemented, returning the value of the top element without removing it. A stack may be implemented to have a bounded capacity. If the stack is full and does not contain enough space to accept an entity to be pushed, the stack is then considered to be in an overflow state. The pop operation removes an item from the top of the stack. A pop either reveals previously concealed items or results in an empty stack, but, if the stack is empty, it goes into underflow state, which means no items are present in stack to be removed.
Chambers 20th Century Dictionary
Stack
stak, n. a large pile of bay, corn, wood, &c.: a number of chimneys standing together: a pyramid formed by a number of muskets with fixed bayonets interlocked and the stocks spread widely apart.—v.t. to pile into a stack: to make up cards for cheating.—ns. Stack′-stand, a frame of wood, iron, or stone, supported on short props, for building a stack upon; Stack′yard, a yard for stacks. [Scand.; Ice. stakkr, a stack of hay.]
The New Hacker's Dictionary
stack
The set of things a person has to do in the future. One speaks of the next project to be attacked as having risen to the top of the stack. “I'm afraid I've got real work to do, so this'll have to be pushed way down on my stack.” “I haven't done it yet because every time I pop my stack something new gets pushed.” If you are interrupted several times in the middle of a conversation, “My stack overflowed” means “I forget what we were talking about.” The implication is that more items were pushed onto the stack than could be remembered, so the least recent items were lost. The usual physical example of a stack is to be found in a cafeteria: a pile of plates or trays sitting on a spring in a well, so that when you put one on the top they all sink down, and when you take one off the top the rest spring up a bit. See also push and pop.(The Art of Computer Programming, second edition, vol. 1, p. 236) says:Many people who realized the importance of stacks and queues independently have given other names to these structures: stacks have been called push-down lists, reversion storages, cellars, nesting stores, piles, last-in-first-out (“LIFO”) lists, and even yo-yo lists! The term “stack” was originally coined by Edsger Dijkstra, who was quite proud of it.
Dictionary of Nautical Terms
stack
A precipitous rock rising out of the sea, in northern hydrography.
Suggested Resources
stack
Song lyrics by stack -- Explore a large variety of song lyrics performed by stack on the Lyrics.com website.
Anagrams for Stack »
tacks
Numerology
Chaldean Numerology
The numerical value of Stack in Chaldean Numerology is: 4
Pythagorean Numerology
The numerical value of Stack in Pythagorean Numerology is: 9
Examples of Stack in a Sentence
They start to stack up, but we don’t have a thoughtful way to stop them.
The film is about death and separation; he had to die. So whether it was that, or whether a smoke stack fell on him, he was going down.
There was a big raging sea beneath Azure Window, suddenly, the arch collapsed into the sea with a loud whoomph, throwing up a huge spray. By the time the spray had faded, the stack had gone too. FOLLOW US ON FACEBOOK FOR MORE FOX LIFESTYLE NEWS Joseph Muscat, the prime minister of Malta, said on Facebook that losing the arch to corrosion was.
My dad and coach Stack were cool, so he just thought it'd be a great fit, he thought coach Stack would get me right. And just based off the phone calls with Coach, he just told me if I wanted to get better, this was the spot to be. He's going to be on me and push me, and I just trusted him.
Among the automakers there will be two camps: those who understand this space, and those who give outside technology companies access to the center stack of the vehicle. Those companies will emerge in the next five years.
Popularity rank by frequency of use
Translations for Stack
From our Multilingual Translation Dictionary
- كومةArabic
- stohCzech
- Stapelspeicher, StapelGerman
- στοίβαGreek
- stakoEsperanto
- pila, apilarSpanish
- pinuEstonian
- pinota, pino, keko, läjä, kasaFinnish
- empiler, pileFrench
- cruach, gnìomhScottish Gaelic
- pilaGalician
- धुआँराHindi
- boglyaHungarian
- կույտArmenian
- troðröð, hlaði, stafliIcelandic
- accatastare, pilaItalian
- ערימהHebrew
- 塚, スタックJapanese
- დასტისGeorgian
- whakaputu, whakapipi, whakaapaapaMāori
- stapel, opstapelen, stapelenDutch
- stakkNorwegian
- stos, stertować, stertaPolish
- pilhaPortuguese
- pirway, pirwaQuechua
- căpiță, stivui, stivăRomanian
- кипа, стог, стопка, стекRussian
- stogSerbo-Croatian
- stackSwedish
- yığınTurkish
Get even more translations for Stack »
Translation
Find a translation for the Stack definition in other languages:
Select another language:
- - Select -
- 简体中文 (Chinese - Simplified)
- 繁體中文 (Chinese - Traditional)
- Español (Spanish)
- Esperanto (Esperanto)
- 日本語 (Japanese)
- Português (Portuguese)
- Deutsch (German)
- العربية (Arabic)
- Français (French)
- Русский (Russian)
- ಕನ್ನಡ (Kannada)
- 한국어 (Korean)
- עברית (Hebrew)
- Gaeilge (Irish)
- Українська (Ukrainian)
- اردو (Urdu)
- Magyar (Hungarian)
- मानक हिन्दी (Hindi)
- Indonesia (Indonesian)
- Italiano (Italian)
- தமிழ் (Tamil)
- Türkçe (Turkish)
- తెలుగు (Telugu)
- ภาษาไทย (Thai)
- Tiếng Việt (Vietnamese)
- Čeština (Czech)
- Polski (Polish)
- Bahasa Indonesia (Indonesian)
- Românește (Romanian)
- Nederlands (Dutch)
- Ελληνικά (Greek)
- Latinum (Latin)
- Svenska (Swedish)
- Dansk (Danish)
- Suomi (Finnish)
- فارسی (Persian)
- ייִדיש (Yiddish)
- հայերեն (Armenian)
- Norsk (Norwegian)
- English (English)
Word of the Day
Would you like us to send you a FREE new word definition delivered to your inbox daily?
Citation
Use the citation below to add this definition to your bibliography:
"Stack." Definitions.net. STANDS4 LLC, 2022. Web. 28 Jun 2022. <https://www.definitions.net/definition/Stack>.
Discuss these Stack definitions with the community:
Report Comment
We're doing our best to make sure our content is useful, accurate and safe.
If by any chance you spot an inappropriate comment while navigating through our website please use this form to let us know, and we'll take care of it shortly.
Attachment
You need to be logged in to favorite.
Log In