About 2,160,000 results
Open links in new tab
  1. 15 Data Structure and Algorithm (DSA) Project Ideas

    May 26, 2024 · Use a stack data structure to evaluate arithmetic expressions in prefix, infix, or postfix notation. Implement basic arithmetic operations (+, -, *, /) using functions or methods. Use a parser to tokenize and convert input expressions into a suitable internal representation.

  2. 30+ DSA Projects with Source Code to Add to Your Resume …

    Apr 23, 2025 · Break the problem into smaller steps, apply the relevant data structures and algorithms, and ensure the project highlights practical applications—this will add value to your DSA projects for your resume.

  3. 27 Algorithm and Data Structure Project Ideas - OpenGenus IQ

    One of the ways to create a to-do list is using a stack data structure. This data structure follows the LIFO (last in - first out) method, so when we add a new task in our list, it will be on the top of the older tasks.

  4. 20 DSA Projects with Source Code in 2025 (For your Resume)

    Examples of DSA projects include: Library Management System: Use data structures to manage and query a collection of books. Social Network Analysis: Implement algorithms to analyze relationships and interactions between users. Pathfinding Algorithms: Create visualizations of algorithms like A* or Dijkstra’s for navigation or routing applications.

  5. mochenxx/data-structures-mini-projects - GitHub

    This project creates stack data structure and implements a stack in two ways: Using array; Using linked list

  6. stack-data-structure · GitHub Topics · GitHub

    Jun 15, 2024 · A collection of data structures implemented in Java, showcasing practical examples and usage scenarios of various fundamental data structures.

  7. 10 Important Data Structures and Algorithms Project Ideas

    Dec 11, 2024 · In this guide, we’ll cover top data structures and algorithms project ideas designed to sharpen your DSA knowledge. You’ll explore various DSA implementations, from beginner-friendly projects to more challenging ones. What are the easy Data Structure and Algorithms project ideas for beginners?

  8. Stack Data Structure - GeeksforGeeks

    Mar 27, 2025 · What is Stack Data Structure? A Complete Tutorial. A Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO (Last In First Out) or FILO (First In Last Out).

  9. Top 12 Data Structure Algorithms to Implement in

    Apr 8, 2025 · Of course, if you’re a programmer then this year you will also write the code, build the projects and you will solve a lot of coding questions. Let’s talk about Data Structures and Algorithms ... This information gets stored in the stack data structure using the push operation. When you click on the back button in your browser you go to the ...

  10. Java Program to Implement Stack Data Structure

    Apr 26, 2024 · Stack is the fundamental Data Structure that can follow the Last In, First Out (LIFO) principle. It can work that the last element added to the stack will be the first one to be removed. It can operate like a stack of plates: We can only add or …

Refresh