Legos Lightlegos.hashnode.dev·Dec 20, 2024Ký pháp nghịch đảo Ba Lan💡 Ký pháp nghịch đảo Ba Lan (Reversed Polish Notation), còn được gọi là ký pháp Łukasiewicz, hoặc đơn giản là ký pháp hậu tố, là một ký pháp toán học trong đó các toán tử đứng sau toán hạng của chúng. Điểm đặc biệt của ký pháp này là không cần bất k...Programming & Algorithmspolishnotation
Gourab Dasgdcademy.hashnode.dev·Dec 19, 2024ADT QueueDefinition: A queue is an Abstract Data Type (ADT) that follows the FIFO principle (First In, First Out). This means elements are added from one end, called the rear, and removed from the other end, called the front. Characteristics of a Queue: Line...10 likes·42 readsqueue
Ekemini Thompsonekeminithompson.hashnode.dev·Dec 19, 2024Stack Data StructureA stack is a linear data structure that follows the Last In, First Out (LIFO) principle. The last item added to the stack is the first one removed. It supports the following primary operations: Push: Add an element to the top of the stack. Pop: Rem...data structures and algorithmstack
Legos Lightlegos.hashnode.dev·Dec 19, 2024Một số ứng dụng của CTDL Stack💡 Stack (ngăn xếp) là một cấu trúc dữ liệu cơ bản. Giống như Queue (hàng đợi), stack được dùng để giải quyết rất nhiều bài toán thú vị. Bài viết này mình xin giới thiệu vài ví dụ về việc áp dụng stack để giải quyết. Giới thiệu Cũng như queue, stac...Programming & Algorithmsstack
Gourab Dasgdcademy.hashnode.dev·Dec 18, 2024Applications of StacksExpression Conversion and evaluation–corresponding algorithms and complexity analysis. Levels of Precedence of Arithmetic Operations In arithmetic expressions, operator precedence determines the order in which operations are performed. Operators with...9 likes·58 readsDSA Navigator: Your Exam Companionpolishnotation
Sinaptiasinaptia.hashnode.dev·Dec 18, 2024Building an MVP with SINAPTIAIn our previous post, we learned that an MVP is a product with just enough features to allow users to experience its core functionality and that its main goal is to test the market fit as quickly and efficiently as possible, by gathering feedback fro...agile
Gourab Dasgdcademy.hashnode.dev·Dec 17, 2024Stack OperationsIntroduction to Stack A Stack is a linear data structure that follows the Last In, First Out (LIFO) principle.It supports the following operations: Push: Add an element to the top of the stack. Pop: Remove the top element from the stack. Peek/Top:...12 likes·62 readsDSA Navigator: Your Exam Companionmakaut
Gourab Dasgdcademy.hashnode.dev·Dec 16, 2024Stacks in DSA: All You Need to Know to Get Started - Part 011.Basics of stack Definition of Stack: A stack is a non-primitive linear data structure. [A stack is called a non-primitive linear data structure because it organizes and manages multiple data elements sequentially (linear), derived from primitive t...3 likes·77 readsDSA Navigator: Your Exam CompanionDSA
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024Generic collections part 2: Stack and QueueStack A Stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle. It's like a stack of plates: the last plate you put on is the first one you take off. Key Operations: Push: Adds an element to the top of the stack. Pop: ...C#
Rishi Yadavrishi-chaosing.hashnode.dev·Dec 12, 2024Day 8 of the 100 Days DSA Challenge: StacksWelcome to Day 8 of the 100 Days DSA Challenge! Today, we will explore the concept of stacks, a fundamental data structure. We will implement various stack-related problems using C language. Let's dive in and enhance our understanding of stacks! 1. I...C