Gagan G Saralayagagang.hashnode.dev·8 hours agoStructuresThe structure in C is a user-defined data type that can be used to group items of possibly different types into a single type. Basically, structures are a collection of values of different data types. EXAMPLE : name (String) For a student store the f...DiscussC
Joy Shreejoyofcode.hashnode.dev·11 hours ago#2 .journey Of Dsa In C++Unlocking the Power of Data Structures and Algorithms in C++: A Journey Through Arrays "Hey there! 🌟 It's Joyshree 👋, and I'm absolutely stoked to kickstart my journey into the wonderful world of Data Structures and Algorithms (DSA) using C++. 🚀 I...DiscussDSA
Kelyn Njeriblog.kelynnjeri.me·13 hours agoA Theoretical Guide To Trees - Part 1Introduction Trees are fundamental data structures used in computer science and software engineering to represent hierarchical relationships between objects. This comprehensive guide aims to provide a practical understanding of trees, their essential...DiscussData Structure And Algorithmsdata structures
Anozia Nodebechukwu Excel nobbiesplace.hashnode.dev·Sep 30, 2023Data Structures: The FundamentalsIntro There are a few things I don't miss about my brief stay in the hostel back in my secondary school days, and those late-night contraband noodles in my electric kettle are one of them. The noodles did hit like a craving at the time, but every tim...DiscussData Science
Ekaterine (Catherine)ekaterine-mitagvaria.hashnode.dev·Sep 30, 2023JavaScript for Beginners: Data StructuresData structures is an important topic in software development and not very easy when you are getting started. Today we will go through the common data structures in JavaScript and try to understand them most simply. Before you continue further, read ...DiscussJavaScript
Gowthaman Ravigowthy.hashnode.dev·Sep 30, 2023132 Pattern | Leetcode 456 | Monotonic StackGiven an array of n integers nums, a 132 pattern is a subsequence of three integers nums[i], nums[j] and nums[k] such that i < j < k and nums[i] < nums[k] < nums[j]. Return true if there is a 132 pattern in nums, otherwise, return false. Example 1: I...Discussleetcode
Aditya Karadcodingchronicles.adityakarad.com·Sep 30, 2023How to make a configurable Priority Queues in C++ for solving problems.What is min-heap and max-heap? Usually, priority queues are used in greedy solutions in Leetcode problems and OAs. Priority queues allow for O(log N) insertion into a data structure which keeps items sorted according to a logic defined by the program...Discuss·216 readsC++
Gary Vladimir Núñez Lópezblog.garybricks.com·Sep 30, 2023The Greedy Guide: Essential Problems and Solutions for Competitive ProgrammingIntroduction Hello everyone! 😄 Welcome back to my blog! Today, we're diving into the fascinating world of greedy algorithms in competitive programming. If you've ever wondered how to spot a problem screaming for a greedy solution or how to tackle th...Discuss·1 likealgorithms
Taylor Jtaytechj.hashnode.dev·Sep 29, 2023Day 21: "Let's Tackle Recursion"What in the what is recursion?! This is my 1st time encountering and working with recursion and let's just say, I'll need a bit more practice before fully understanding what these lines of code are doing. Theoretically, I seem to understand it but us...Discuss100DaysOfCode
Nehemiah Daudanad.hashnode.dev·Sep 29, 2023Data Structure in Web Development: A Comprehensive Guide to Create, Process, and Store Data with Django.In this article, you will learn about data structure in web development. Django—a Python framework for web development—will be the case study of this article. You will learn how to create, process, organize, manage and store data using Django. Intro...DiscussPython