Skip to content

VladislavFitz/Algorithms-Data-Structures

Repository files navigation

Algorithms & Data Structures

Algorithms and data structures implemented in Swift

Algorithms

Sort

Tree traversal

Graph algorithm

  • Dijkstra - finding the shortest paths between nodes in a graph.
  • Depth-first search - traversing the graph, exploring as far as possible along each branch before backtracking.
  • Breadth-first search - traversing the graph, exploring all nodes at the present depth prior to moving on to the nodes at the next depth level.
  • Kruskal - finding a minimum spanning forest of an undirected edge-weighted graph.

Data structures

Tree

About

Data structures & algorithms implemented in Swift 4

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages