├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── global.d.ts ├── package.json ├── src ├── BackTracking │ ├── MazeSovler.ts │ └── N-Queens.ts ├── Cache │ └── LRU-Cache.ts ├── Estruturas │ ├── DoubleLinkedList.ts │ ├── MaxHeap.ts │ ├── MinHeap.ts │ ├── Queue.ts │ └── Stack.ts ├── Grafos │ ├── BfsAdjMatrix.ts │ ├── DeepFirstSearchGraph.ts │ └── Dijkrstra.ts ├── ProblemasAleatorios │ └── TwoCristalBalls.ts ├── Search │ ├── BynarySearch.ts │ └── LinearSearch.ts ├── Sort │ ├── BubbleSort.ts │ ├── InsertionSort.ts │ ├── QuickSort.ts │ ├── SelectionSort.ts │ └── mergeSort.ts └── Tree │ ├── BinaryTree.ts │ ├── BreadthFIirstSearch.ts │ ├── CompareBinaryTree.ts │ └── DepthFirstSearch.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/global.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/package.json -------------------------------------------------------------------------------- /src/BackTracking/MazeSovler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/BackTracking/MazeSovler.ts -------------------------------------------------------------------------------- /src/BackTracking/N-Queens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/BackTracking/N-Queens.ts -------------------------------------------------------------------------------- /src/Cache/LRU-Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Cache/LRU-Cache.ts -------------------------------------------------------------------------------- /src/Estruturas/DoubleLinkedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Estruturas/DoubleLinkedList.ts -------------------------------------------------------------------------------- /src/Estruturas/MaxHeap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Estruturas/MaxHeap.ts -------------------------------------------------------------------------------- /src/Estruturas/MinHeap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Estruturas/MinHeap.ts -------------------------------------------------------------------------------- /src/Estruturas/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Estruturas/Queue.ts -------------------------------------------------------------------------------- /src/Estruturas/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Estruturas/Stack.ts -------------------------------------------------------------------------------- /src/Grafos/BfsAdjMatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Grafos/BfsAdjMatrix.ts -------------------------------------------------------------------------------- /src/Grafos/DeepFirstSearchGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Grafos/DeepFirstSearchGraph.ts -------------------------------------------------------------------------------- /src/Grafos/Dijkrstra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Grafos/Dijkrstra.ts -------------------------------------------------------------------------------- /src/ProblemasAleatorios/TwoCristalBalls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/ProblemasAleatorios/TwoCristalBalls.ts -------------------------------------------------------------------------------- /src/Search/BynarySearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Search/BynarySearch.ts -------------------------------------------------------------------------------- /src/Search/LinearSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Search/LinearSearch.ts -------------------------------------------------------------------------------- /src/Sort/BubbleSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Sort/BubbleSort.ts -------------------------------------------------------------------------------- /src/Sort/InsertionSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Sort/InsertionSort.ts -------------------------------------------------------------------------------- /src/Sort/QuickSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Sort/QuickSort.ts -------------------------------------------------------------------------------- /src/Sort/SelectionSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Sort/SelectionSort.ts -------------------------------------------------------------------------------- /src/Sort/mergeSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Sort/mergeSort.ts -------------------------------------------------------------------------------- /src/Tree/BinaryTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Tree/BinaryTree.ts -------------------------------------------------------------------------------- /src/Tree/BreadthFIirstSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Tree/BreadthFIirstSearch.ts -------------------------------------------------------------------------------- /src/Tree/CompareBinaryTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Tree/CompareBinaryTree.ts -------------------------------------------------------------------------------- /src/Tree/DepthFirstSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/src/Tree/DepthFirstSearch.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuriSamp/Algorithms/HEAD/tsconfig.json --------------------------------------------------------------------------------