Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 600 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 600 Bytes

UTFPR Algorithms

Algorithms created under the Data Structures and the Data Searching & Sorting classes at UTFPR.

Structures

Static

  • Stack
  • Queue

Dynamic

  • Linked List
  • Doubly Linked List
  • Binary Search Tree
  • AVL Tree

Internal Sort

Simple sort

  • Bubble Sort
  • Selection Sort
  • Insertion Sort

Efficient sort

  • Shell Sort
  • Quick Sort
  • Heap Sort
  • Merge Sort

External Sort

  • Merge Sort
  • Quick Sort

Search Algorithms

Primary Memory

  • Linear Search
  • Binary Search Tree
  • SBB Tree