Vaishnavi Dwivedivaishd.hashnode.dev·Sep 16, 2024What is JAVA and why DSAHave you ever thought about why we solve certain questions a particular way? And why, when we submit some questions using simple loops on LeetCode, we get the response "Time Limit Exceeded"? The word you're looking for is time complexity. You've prob...DiscussLearn DSA - JAVAJava Programming
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Apr 15, 2024Linked List BasicsWHAT IS LINKED LIST A linked list is a fundamental data structure in computer science. It consists of nodes where each node contains data and a reference (link) to the next node in the sequence. This allows for dynamic memory allocation and efficient...Discuss·27 likesDSA
Naman GargforAll about Java (DSA)namangargjava-dsa.hashnode.dev·Sep 27, 2023Get started with JavaJava is a popular programming language, created in 1995. It is owned by Oracle, and more than 3 billion devices run Java. It is used for: Mobile applications (especially Android apps) Desktop applications Web applications Web servers and applicat...Discuss·1 likeJava
Arunika Srivastavaarunika26.hashnode.dev·Jan 27, 2023Linked List : Connecting the building blocks of Data StructuresWhat is a linked list? A linked list is a data structure that can be considered as a list of boxes, where each box contains a value/element and has a reference or link pointing to the next element. These elements are referred to as "nodes". The firs...Discuss·66 readsjava dsa
Astitva Goeldevitease.hashnode.dev·Dec 20, 2022Data Structures & AlgorithmsIntroduction In simple terms, Data Structures are ways to arrange data in the computer memory so that it can be used efficiently. Whereas, Algorithms can be defined as a sequence of steps performed on data or data structures to efficiently solve a pr...Discuss·1 likeSlaughtering DSA in Javacrackit
Nirav Prajapatitech2.hashnode.dev·Aug 17, 2022How to solve factorial problem using recursion?Hello developer's Today i share my experience of solving factorial problem using recursion. First of all what is recursion? Recursion is a function which recall itself. How to solve factorial problem using recursion? First of all we try to divide thi...Discuss·1 likejava dsa