About 1,710 results
Open links in new tab
  1. Data structures and algorithms
    Examples of algorithms and data structures illustrating core computational techniques and organizational methods
  2. DSA Tutorial - GeeksforGeeks

  1. Data Structures and Algorithms (DSA) form the backbone of efficient programming. Data structures define how data is stored, organized, and accessed, while algorithms are step-by-step procedures to process that data effectively. Together, they enable solving complex problems with optimal performance in terms of time and space complexity.

    Core Data Structures include:

    • Arrays – Contiguous memory storage for constant-time access.

    • Linked Lists – Sequential nodes connected via pointers.

    • Stacks & Queues – LIFO and FIFO structures for ordered processing.

    • Trees & Graphs – Hierarchical and network-based relationships.

    • Heaps & Hash Tables – Priority-based and key-value storage.

    Key Algorithm Categories:

    Feedback
  2. DSA Introduction - W3Schools

    In this tutorial, you will first learn about a data structure with matching algorithms, before moving on to the next data structure. Further into the tutorial the concepts …

  3. Data Structures and Algorithms (DSA) Tutorial

    • This Data Structures Algorithms tutorial helps you prepare for technical interviews and certification exams. We have provided various quizzes and assignments to check your learning level. Given quizzes have multiple choice type of questions and their answers with short explanation. Following is a sample quiz, try to attempt any of the given answers...
    See more on tutorialspoint.com

    Code sample

    int main(){
      printf("Hello, World! \n");
      return 0;
    }...
  4. DSA Examples | Data Structures & Algorithms with …

    Sep 23, 2025 · Explore top DSA examples with step-by-step solutions. Learn data structures and algorithms for coding interviews, problem-solving, and …

  5. Learn Data Structures and Algorithms - Programiz

    These tutorials will provide you with a solid foundation in Data Structures and Algorithms and prepare you for your career goals. What is an algorithm? Why …

  6. Data Structures and Algorithms - LeetCode

    Common patterns and tricks related to the data structure or algorithm. Several example walkthroughs of relevant problems to help illustrate the concepts …

  7. The Complete Guide to Data Structures in C: From Arrays to Hash Tables

    3 days ago · The Complete Guide to Data Structures in C: From Arrays to Hash Tables English Version | 中文版 Introduction Data structures form the foundation of computer science, and understanding …

  8. Data Structures and Algorithms Tutorial - Scaler Topics

    Learn data structures and algorithms easily from beginner to advanced level, in this guide by Scaler Topics. Know more about the applications of data structures and algorithms along with example …

  9. These lecture notes were compiled by CIS 1210 Course Staff, including Steven Bursztyn, Rajiv Gandhi, John Geyer, and Robin Tan for CIS 1210 at the University of Pennsylvania. These lecture notes are a …

  10. Learn Data Structures and Algorithms - freeCodeCamp.org

    Feb 2, 2023 · And that’s why I put together this article – to show you what data structures and algorithms are, and to share some resources with you to help you …