Anto Jebikshanantojebikshan.hashnode.dev·Aug 14, 2024Bill Management using C (Terminal based)Building a Simple Terminal-Based Billing System in C: A Step-by-Step Guide Introduction In this article, we'll delve into creating a simple yet functional terminal-based billing system using the C programming language. This project is perfect for tho...DiscussBillingSystemusingC
Aditya Vaasudev Badityavaasudevb.hashnode.dev·May 14, 2024Essential Guide to Queues: What They Are and How They WorkIntroduction Whether you're at a railway reservation counter, waiting in line at the movie theater, or submitting print jobs to a network printer, forming a queue is the universal solution to bring order to chaos. By patiently awaiting your turn, you...Discuss·1 likequeue ds
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
Vishal Kumar90-days-of-devops-challenge.hashnode.dev·Feb 14, 2024Day 14: Python Data Types and Data Structures for DevOpsPython Data types Python data types are used to define the type of variable. In Python, a data type communicates with the interpreter about how the programmer intends to use the data and information stored. type() function is used to find the data t...Discuss·1 like#90daysofdevops
Wiseman Umanahtechwhiz.hashnode.dev·Dec 1, 2023Hashing It Out: Understanding the Magic of HashtablesIntroduction One of the most interesting data structures I have come to love in C language is the Hash table. This ingenious data structure offers a robust framework for organizing and categorizing data, relying on intricate algorithms to achieve thi...Discuss·2 likesProgramming Blogs
Ajay Giteajaygite.hashnode.dev·Aug 18, 2023Data Types and Data StructuresData Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming, data types are actu...Discuss#90daysofdevopschallenge
Luqman Shabanluqmanshaban.hashnode.dev·Aug 11, 2023Merge Strings AlternatelyHey there! Learning data structures and implementing the right algorithms in your software has proven to increase the sufficiency, speed and performance of your program. I have decided to document how I tackled and solved the challenges from leetcode...DiscussLeetCode 75datastructures
Samuel Nwankwosaminwankwo.hashnode.dev·Apr 20, 2023Programming Made Simple: A Beginner's Guide to Understanding the Art of CodeProgramming is the process of creating computer software, applications, and scripts that tell a computer what to do. It involves using a programming language to write instructions, or code, that a computer can understand and execute. Programming can ...Discuss·1 like·60 readsProgramming Tips
Arsalan Yaqoob Malikarsalanmalik.hashnode.dev·Apr 4, 2023Fast & Slow pointer method.An Algorithm every person who's learning Data Structures and Algorithms should know. Introduction to Linked Lists: Linked lists are one of the fundamental data structures used in computer science. A linked list consists of a sequence of nodes, each c...Discuss·12 likes·151 readsdatastructures
Jayesh Batrajayeshbatra.hashnode.dev·Mar 31, 2023Implement A Stack Using an ArraySo hey, in this article we are going to learn to Implement A Stack Using an Array Why? Implementing a stack using an array is a common approach in computer programming for several reasons: Efficiency: Arrays offer constant-time access to elements in...Discuss·1 likeStacks