data-structures

Sorting and Searching Algorithms

Sorting and searching are fundamental operations in computer science and play a crucial role in various applications. From organizing vast data sets to quickly finding specific information, sorting and searching algorithms provide efficient solutions to these challenges.

Posted May 26, 2023 by Anusha and Rohith ‐ 3 min read

data-structures algorithms programming sorting-and-searching-algorithms

Dynamic Algorithms

Dynamic Programming, often hailed as the crown jewel of algorithmic problem-solving techniques, has revolutionized the way we tackle complex optimization problems. By breaking problems into smaller subproblems and reusing previously computed results, dynamic programming offers elegant and efficient solutions.

Posted May 26, 2023 by Anusha and Rohith ‐ 3 min read

data-structures algorithms programming

Linkedlist

Linked List is a part of the Collection framework present in java.util package. This class is an implementation of the LinkedList data structure which is a linear data structure where the elements are not stored in contiguous locations and every element is a separate object with a data part and address part. The elements are linked using pointers and addresses. Each element is known as a node.

Posted August 16, 2022 by Anusha ‐ 5 min read

core java programming linkedlist list collections data-structures

Subscribe For More Content