DAMIAN ROBINSONdamianrobinson.hashnode.dev·Oct 13, 2024How To Create An NFT On BitcoinIntroduction About time we create our own SIP009-compliant NFT! We will quickly go over the aforementioned built-in NFT functions to understand how they work and what their limitations are, and then use them to implement the SIP009 trait. Step 1: Def...DiscussBitcoin
Keerthi Ravilla Subramanyamkeerthiravillasubramanyam.hashnode.dev·Oct 7, 2024A Simple Explanation of Stacks: The Last-In-First-Out MethodIn our exploration of Data Structures and Algorithms (DSA), we've looked at how different structures work, from arrays to linked lists. Today, we'll focus on other basic fundamental structures stacks. Stacks work on the Last-In-First-Out (LIFO) princ...Discuss·10 likesData structures courseStacks
Kingsley Ihemelandukijuchihe.hashnode.dev·Sep 30, 2024Queues and Stacks in DSAWhat are Queues? A queue in data structures is a linear data structure that operates on the First In First Out (FIFO) principle. This means that the first element added to the queue will be the first one to be removed, similar to people lining up for...DiscussDSA
Jyotiprakash Mishrablog.jyotiprakash.org·Aug 9, 2024Introduction to StacksStacks are one of the fundamental data structures in computer science, essential for a wide range of algorithms and applications. A stack is a linear data structure that follows a particular order in which operations are performed. The order may be L...Discuss·24 likes·2.5K readsdata structures
Adarsh Kumar Vermaadarshverma013.hashnode.dev·Aug 4, 2024Construct and Stack in AWS CDKHola Amigos,In this article I am going to discuss about Stack and Constructs in AWS CDK. Constructs A construct in cdk is typically a building block using which we create different resources for our Infrastructure. Construct can be consisting of eith...DiscussAWS
Muhire Josuéjosuedev.hashnode.dev·Aug 4, 2024Understanding Stack Data StructuresIntroduction Stacks are one of the most fundamental data structures in computer science, offering a simple yet powerful way to manage data. Imagine trying to keep track of tasks you've completed throughout the day; a stack would be like a pile of sti...DiscussJavaScript
DAMIAN ROBINSONdamianrobinson.hashnode.dev·Jul 3, 2024Bitcoin Builder's DeckFor anyone interested in building smart contracts on Bitcoin, I've put together this comprehensive list of vocabulary words and phrases to help you–and myself–become an expert in the Clarity programming language, with short definitions for each term....Discuss·1 likeclarity-lang
Aditya Vaasudev Badityavaasudevb.hashnode.dev·May 10, 2024Stacks 101: A Beginner's OverviewIntroduction Whether it's items in a store or books in a library, once they become more than handful, people naturally start tidying things up by stacking them. When man started programming data, stack was one of the first structures that he thought ...Discuss·1 likeStacks
Ishan Vaghelaishanv5.hashnode.dev·Apr 5, 2024Data Structures - Best Way To Build Your LogicThis Blog contains all concept of data structures which can be easily remember . Behind every click, swipe, and search, there's a complex dance of data and instructions. Data structures and algorithms are the choreography that makes it all work. What...Discuss·45 readsDynamic Programming
Adarsh Agnihotriadarshagnihotri.hashnode.dev·Mar 2, 2024Stacks & Queues In JavaWhat Is Stack? Stack is a linear data structure similar to arrays and linked lists, restricting the random access of elements. It is like a container of pieces that can only be stacked on top of each other and removed from that same direction. That's...Discuss·220 readsJava