Showing 0–0 of 0 results
| # | Exercise Title | Features | Description | Platform | Keywords |
|---|---|---|---|---|---|
| 1 | Linked Queue Dequeue Proficiency Exercise | Tracing Exercise | Linked queue dequeue proficiency exercise. Users click on values in a linked queue display to show how dequeue takes place. | OpenDSA | Linked Queue |
| 2 | Linked Queue Enqueue Proficiency Exercise | Tracing Exercise | Linked queue enqueue proficiency exercise. Users click on values in a linked queue display to show how enqueue takes place. | OpenDSA | Linked Queue |
| 3 | Linked Queue Dequeue Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting an implementation for linked queue dequeue. | OpenDSA | Linked Queue |
| 4 | Linked Queue Enqueue Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting an implementation for linked queue enqueue. | OpenDSA | Linked Queue |
| 5 | Linked Queue Data Members Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting data members and constructors for a linked queue implementation. | OpenDSA | Linked Queue |
| 6 | Doouble linked list 3 | Python PredictingFinalResult for demonstrating Doouble linked list 3 | QuizPET | linked list, list | |
| 7 | Single linked list | Python PredictingFinalResult for demonstrating Single linked list | QuizPET | linked list, list | |
| 8 | Linked List Implementation - 1 | PCEX Set of activities for Linked List Implementation - 1 | PCEX | ||
| 9 | Linked List Implementation | In this example, we will define a linked list and create functions to add a new element to the end... | PCEX | ||
| 10 | Linked List Operations - Size 1 | In this example, we will learn how to create more functions inside a linked list | PCEX | ||
| 11 | Linked List Operations - Size 2 | In this example, we will learn how to create more functions inside a linked list | PCEX | ||
| 12 | Linked List Implementation - 2 | PCEX Set of activities for Linked List Implementation - 2 | PCEX | ||
| 13 | Linked List Implementation | In this example, we will define a linked list and create functions to add a new element to the end... | PCEX | ||
| 14 | Linked List Operations - Contains | In this example, we will implement the contains() method that accepts a value and returns True if the value is... | PCEX | ||
| 15 | Linked List 1 | Java BehaviorExample for demonstrating Linked List 1 | AnnEx | ||
| 16 | Construct a function that checks the size of a linked list |
Construct a function that calculates the number of elements in a singly linked list. LinkedList class implementation is given below. |
jsParsons | linked list | |
| 17 | Singly Linked List | Python CodeVisualization for demonstrating Singly Linked List | JSVEE | linked list | |
| 18 | Linked List Insertion Proficiency Exercise | Tracing Exercise | Linked list insert interactive proficiency exercise. Users click on values in a linked list display to show how insertion takes... | OpenDSA | Linked List |
| 19 | Linked List Remove Proficiency Exercise | Tracing Exercise | Linked list remove interactive proficiency exercise. Users click on values in a linked list display to show how remove takes... | OpenDSA | Linked List |
| 20 | Linked List Summary Questions | Question, Battery | Self-practice questions about linked list costs. | OpenDSA | Linked List |
| 21 | Linked Stack Pop Proficiency Exercise | Tracing Exercise | Linked stack pop proficiency exercise. Users click on values in a linked list display to show how pop takes place. | OpenDSA | Linked Stack |
| 22 | Linked Stack Push Proficiency Exercise | Tracing Exercise | Linked stack push proficiency exercise. Users click on values in a linked list display to show how push takes place. | OpenDSA | Linked Stack |
| 23 | Bad Linked List Representation Slideshow | Presentation | Slideshow demonstrating a bad representation for the current node in a linked list. | OpenDSA | Linked List |
| 24 | Linked List Deletion Problem Slideshow | Presentation | Slideshow demonstrating why a naive representation for the current node in a linked list leads to problems on deletion. | OpenDSA | Linked List |
| 25 | Linked List Constructors Slideshow | Code Tracing Presentation | Slideshow presenting the constructors for a linked list implementation. | OpenDSA | Linked List |
| 26 | Linked List Insertion Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow demonstrating insertion into a linked list. | OpenDSA | Linked List |
| 27 | Linked List Miscillaneous Methods Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow demonstrating some miscillaneous methods for a linked list implementation. | OpenDSA | Linked List |
| 28 | Linked List Remove Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow demonstrating removing from a linked list. | OpenDSA | Linked List |
| 29 | Linked List Insertion Special Case Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow demonstrating some special cases related to insertion into a linked list. | OpenDSA | Linked List |
| 30 | Linked List Data Members Slideshow | Code Tracing Presentation | Slideshow presenting the data members for a linked list implementation. | OpenDSA | Linked List |
| 31 | Linked Stack Pop Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow discussing the implementation for the pop operation in a linked stack. | OpenDSA | Linked Stack |
| 32 | Linked Stack Push Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow discussing the implementation for the push operation in a linked stack. | OpenDSA | Linked Stack |
| 33 | Double linked list 1 | Python PredictingFinalResult for demonstrating Double linked list 1 | QuizPET | doubly linked list, linked list, list | |
| 34 | Doubly Linked List | Create the necessary classes for a Doubly Linked List, containing the method insert_at_start(data) to add a new item to the... | PCEX | ||
| 35 | Doubly Linked List | Create the necessary classes for a Doubly Linked List, containing the method insert_at_start(data) to add a new item to the... | PCEX | ||
| 36 | Singly Linked List | Create the necessary classes for a Singly Linked List, containing the method append(item) to add a new item to the... | PCEX | ||
| 37 | Singly Linked List | Create the necessary classes for a Singly Linked List, containing the method add(item) to add a new item to the... | PCEX | ||
| 38 | Construct a function that traverse a linked list |
Construct a function that prints all elements of a Doubly Linked List in forwards and then reverse order. DoublyLinkedList class implementation... |
jsParsons | doubly linked list, linked list | |
| 39 | Doubly Linked List | Python CodeVisualization for demonstrating Doubly Linked List | JSVEE | doubly linked list, linked list | |
| 40 | Doubly Linked List Append Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting appending to a doubly linked list. | OpenDSA | Doubly Linked List |
| 41 | Doubly Linked List Insert Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting insertion into a doubly linked list. | OpenDSA | Doubly Linked List |
| 42 | Doubly Linked List Prev Method Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow showing how to move to the previous element in a doubly linked list. | OpenDSA | Doubly Linked List |
| 43 | Doubly Linked List Remove Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting removing from a doubly linked list. | OpenDSA | Doubly Linked List |
| 44 | py_double_linked_list | PCEX Set of activities for py_double_linked_list | PCEX | ||
| 45 | Search in the linked list. | When using a LinkedList, it is possible that you may want to search through the list to see if a... | PCEX | ||
| 46 | Search in the linked list. | When using a LinkedList, it is possible that you may want to search through the list to see if a... | PCEX | ||
| 47 | py_single_linked_list | PCEX Set of activities for py_single_linked_list | PCEX | ||
| 48 | Radix Sort Visualization: Linked List Implementation | Algorithm Visualization, User Supplied Data | Algorithm Visualization for Radix Sort, implemented using linked lists. User can select data for the visualization. | OpenDSA | Radix Sort |
| 49 | q_java_q_py_dlinkedlist1 | Java PredictingFinalResult for demonstrating q_java_q_py_dlinkedlist1 | QuizJET | linked list | |
| 50 | q_java_q_py_slinkedlist1 | Java PredictingFinalResult for demonstrating q_java_q_py_slinkedlist1 | QuizJET | linked list | |
| 51 | Complete Binary Tree Calculation Questions | Calculation Exercise, Battery | Self-practice questions requiring user to calcuate node positions and values in an array representation for a complete binary tree. | OpenDSA | Linked List |
| 52 | List Implementation Overhead Exercise | Calculation Exercise, Battery | User provides overhead computations for specified implementations. | OpenDSA | Linked List, Array-Based List, Overhead, List Implementation Comparison |
| 53 | Freelist Slideshow | Algorithm Visualization | Slideshow presenting the concept of using a freelist instead of a system memory manager. | OpenDSA | Linked List |
| 54 | ArrayList 1 | Java PredictingFinalResult for demonstrating ArrayList 1 | QuizJET | arraylist, linked list, list | |
| 55 | Creating a Chain of Links | Algorithm Visualization, Code Tracing Presentation | Slideshow introducing the concept of chaining link nodes to form a linked list. | OpenDSA | Link Node, Linked List |
| 56 | Link Nodes: Iteration | Algorithm Visualization, Code Tracing Presentation | Slideshow introducing the concept of iterating through a linked list. | OpenDSA | Link Node, Iteration |
| 57 | Link Nodes: Delete | Algorithm Visualization, Code Tracing Presentation | Slideshow introducing the concept of deleting from a linked list. | OpenDSA | Link Node, Iteration |
| 58 | Link Nodes: Insertion | Algorithm Visualization, Code Tracing Presentation | Slideshow introducing the concept of inserting a new node into a linked list. | OpenDSA | Link Node, Iteration |
| 59 | Array-Based Stacks Pop Proficiency Exercise | Tracing Exercise | Array-based stack pop proficiency exercise. Users click on values in a linked list display to show how pop takes place. | OpenDSA | Array-Based Stack |
| 60 | Array-Based Stack Push Proficiency Exercise | Tracing Exercise | Array-based stack push proficiency exercise. Users click on values in a linked list display to show how push takes place. | OpenDSA | Array-Based Stack |
| 61 | Practicing Pointers: Links | Tracing Exercise | Third pointer assignment proficiency exercise. Users click on objects to show how pointers link nodes together into a linked list. | OpenDSA | Pointer, Object |
| 62 | Determining the Maximum Rating for Each Soda in The Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 63 | Determining the Average Rating for Each Soda in The Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 64 | Determining the Average Ratings of each Respondent and Average Ratings Given to Each Soda in the Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 65 | Determining the Maximum Rating for Each Soda in The Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 66 | Determining the Average Rating for Each Soda in The Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 67 | Determining the Average Ratings of each Respondent and Average Ratings Given to Each Soda in the Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 68 | Determining the Maximum Rating for Each Soda in The Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 69 | Determining the Average Rating for Each Soda in The Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | ||
| 70 | Determining the Average Ratings of each Respondent and Average Ratings Given to Each Soda in the Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX |