VJ XI0xeleven.me·Sep 24, 2023Memory OverviewWhen a program is loaded into the memory in the Windows Operating System. it sees an abstract view of the memory. This means that the program doesn't have access to the full Memory; instead, it only has access to its Memory. For that program, that is...Discusshacking
Kinstakinsta.hashnode.dev·Sep 20, 2023MEAN Stack ExplainedThe MEAN stack is an open-source collection of JavaScript technologies that’s gained significant popularity. It makes it easy to build complex, full-stack web applications and is an excellent option for front and backend development. This article exp...Discusswebdev
Maxat Akbanovbrain2life.hashnode.dev·Sep 14, 2023Stack Data Structure in GoA stack is a Last In First Out (LIFO) data structure, which means that the last element added to the stack will be the first one to be removed. Think of it as a stack of plates; you can only add (push) or remove (pop) a plate from the top of the stac...Discuss·45 readsgoGo Language
Sumit Mazumdarsumitmazumdar.hashnode.dev·Sep 6, 2023Saving Memory Space: How to Handle Multiple Stacks with a Single ArrayTo store multiple stack in an array, the first approach that comes to your mind would be that you have an array of n elements and there are k stacks to be stored, and the first thing you will be doing is to make space for stacks that is you will divi...Discussarrays
Sumit Mazumdarsumitmazumdar.hashnode.dev·Sep 6, 2023Understanding and Converting Mathematical Expressions: Infix, Postfix and Prefix NotationsInfix Notation Infix is the day-to-day notation that we use of format A + B type. The general form can be classified as (a op b) where a and b are operands(variables) and op is the Operator. Example 1 : A + B Example 2 : A * B + C / D Postfix Not...Discusspostfix
Sumit Mazumdarsumitmazumdar.hashnode.dev·Sep 6, 2023Stack Data Structure: Building Blocks of Efficient AlgorithmsA stack is a linear data structure in which the insertion of a new element and removal of an existing element takes place at the same end represented as the top of the stack. The stack data structure follows the Last-In, First-Out (LIFO) principle. T...Discussstack
vasanth kumarblog.itsparser.in·Sep 5, 2023Stack vs HeepWhen writing a program, the computer has two areas of memory where it can store data: the stack and the heap. Stack The stack is a region of memory limited to the application, that is allocated for a program when it starts running. It is used to stor...DiscussBootstrapstack
Hemant Besracodeinjava.hashnode.dev·Sep 1, 2023An In-depth Guide to the List InterfaceList Interface The List interface is a part of the Java Collections Framework and extends the Collection interface. It represents an ordered collection of elements where duplicate values are allowed. The key feature of a list is that elements are sto...Discuss·1 like·67 readsCollectionlist
Bobby Sadhwanibobby-sadhwani.hashnode.dev·Aug 29, 2023Stack in JavascriptWhat is Stack? A stack is an ordered collection of items that follow the (LIFO) Last In First Out principle. The addition and removal of items take place at the same end i.e. at the top. The newest elements are at the top and the oldest elements are ...DiscussJavaScript
Mageshkannan Annathuraimageshkannan.hashnode.dev·Aug 22, 2023JavaScript Interview ProgramQuestion: Given a string exp, Write a program to check whether the parentheses, curly braces, and square brackets Test Case 1: //input const exp = "{()}[]" //output Balanced Test Case 2: //input const exp = "{(]}[(" //output Not Balanced The proble...Discuss·60 readsJavaScript