Big Oh Notation
  • 0.00
  • 1
  • 2
  • 3
  • 4
  • 5
Length: 7:06
Big Oh Notation (College Level)
Instructor: Robert Chase (Rpchase)
Computer scientists count how many operations their algorithms take to run. A notation has been developed to simplify these counts. Sorting algorithms have different complexities. Bubble sort has a high level of complexity while radix sort has a low level of complexity.
7:06
College Level
Linked Lists - Part 2: Implementation in Java
  • 0.00
  • 1
  • 2
  • 3
  • 4
  • 5
Length: 12:45
Linked Lists - Part 2: Implementation in Java (College Level)
Instructor: Aheaney
This tutorial provides a demonstration of how to implement and operate on a singly linked list in Java using an imperative style. (Note: No part of the Java Collections Framework is used in this tutorial)
12:45
College Level
Linked Lists - Part 1: Overview
  • 5.00
  • 1
  • 2
  • 3
  • 4
  • 5
Length: 4:16
Linked Lists - Part 1: Overview (College Level)
Instructor: Aheaney
This tutorial provides a non-language specific overview of how linked lists function and are composed in the abstract. Linked Lists - Part 2 will demonstrate how to actually implement a linked list in Java.
4:16
College Level
Recursion I - Iterative with Numbers
  • 0.00
  • 1
  • 2
  • 3
  • 4
  • 5
Length: 13:50
Recursion I - Iterative with Numbers (College Level)
Instructor: Aheaney
This tutorial provides a mathematical, non-language specific introduction to how iterative recursion works.
13:50
College Level
Stacks and Queues - Part 2 - Implementation
  • 0.00
  • 1
  • 2
  • 3
  • 4
  • 5
Length: 8:56
Stacks and Queues - Part 2 - Implementation (College Level)
Instructor: Aheaney
This tutorial provides a demonstration of an implementation of a simple stack and queue using a linked list structure in Java. (Note: No part of the Java Collections Framework is used in this demonstration)
8:56
College Level
Stacks and Queues - Part 1 - Review
  • 3.00
  • 1
  • 2
  • 3
  • 4
  • 5
Length: 7:21
Stacks and Queues - Part 1 - Review (College Level)
Instructor: Aheaney
This tutorial provides an overview of stack and queue data structures in the abstract. Part 2 provides a demo of an actual implementation of a stack and queue structure in Java.
7:21
College Level