Riyaz Nabiyullariyaz-blog.hashnode.dev·Jun 24, 2024How to Approach a Coding Problem(DSA)Solving Data Structures and Algorithms (DSA) problems can be challenging. This guide aims to help you solve these problems and understand them deeply. Solving problems is not just about finding a solution but developing a problem-solving mindset that...75 readsdata structures
Jyotiprakash Mishrablog.jyotiprakash.org·May 17, 2024DSA: Problems on Recursion, Pointers, and Dynamic AllocationReverse a String: Write a recursive C program to reverse a given string. The program should take a string as input and return its reverse. Fibonacci Sequence: Write a recursive C program to find the n-th number in the Fibonacci sequence, utilizing m...225 readsDSA
Jyotiprakash Mishrablog.jyotiprakash.org·May 9, 2024DSA: Linked ListsWhat are Linked Lists? Linked lists are a fundamental data structure in computer science used to store collections of elements. Unlike arrays, which store elements in contiguous memory locations, linked lists consist of nodes where each node contains...293 readsdata structures
Ishita Junejaishitajuneja.hashnode.dev·Nov 8, 2022What Is The Binary Tree Multiplication Problem?Those who are practicing the DSA problems must be aware of the topic of Tree Data Structure. Most well-known companies follow this data structure for their own products. Programmers who are preparing for big IT companies will have to master the data...37 readscoding problem