|
1 | 1 | # Sprint Challenge: Data Structures and Algorithms |
2 | 2 |
|
3 | | -For this sprint challenge, you'll be implementing a few functions that build off of some of the data structures you implemented in the first half of the week. Then you'll be analyzing the runtimes of these methods. |
| 3 | +For this sprint challenge, you'll be implementing a few functions that build off of some of the data structures you implemented in the first half of the week. Then you'll be analyzing the runtimes of all of the data structure methods. |
4 | 4 |
|
5 | 5 | For the algorithms portion of the sprint challenge, you'll be answering the questions posed in the `exercises.pdf` file regarding runtime complexities and algorithmic paradigms. |
6 | 6 |
|
7 | 7 | ## Data Structures |
8 | 8 | Before getting started, run `npm install` in the root-level directory to install needed dependencies for testing. |
9 | 9 |
|
10 | | -### Task 1. Implement Heapsort |
11 | | -Inside the `src` directory you'll also find the `heap.js` file with the completed code the heap class. Your second task is to implement a sorting method called [heapsort](https://en.wikipedia.org/wiki/Heapsort) that uses the heap data structure in order to sort an array of numbers. Your `heapsort` function should return a new array containing all of the sorted data. |
12 | | - |
13 | | -Run `npm test heap` to run the tests for your `heapsort` function to ensure that your implementation is correct. |
| 10 | +### Task 1. Implement Depth-First and Breadth-First Traversal on the Binary Search Tree Class |
| 11 | +Navigate into the `data_structures` directory. Inside the `src` directory, you'll see the `binary-search-tree.js` file with the completed code for the binary search tree class. Your first task is to implement the methods `depthFirstForEach` and `breadthFirstForEach` on the `BinarySearchTree` class: |
14 | 12 |
|
15 | | -### Task 2. Check if a binary search tree is balanced |
16 | | -Navigate into the `data_structures` directory. Inside the `src` directory, you'll see the `binary-search-tree.js` file with the completed code for the binary search tree class. Your first task is to write a separate function (not part of the `BinarySearchTree` class) that receives the root node of an instance of a binary search tree and returns `true` if the binary search tree is perfectly balanced, i.e., all the leaf nodes of the tree reside on the same level. Your function should return `false` if the tree is not perfectly balanced. |
| 13 | + * `depthFirstForEach(cb)` receives a callback function as a parameter. This method iterates over the binary search tree in [depth-first](https://en.wikipedia.org/wiki/Depth-first_search) order, applying the supplied callback function to each tree element in turn. |
| 14 | + * `breadthFirstForEach(cb)` receives a callback function as a parameter. This method iterates over the binary search tree in [breadth-first](https://en.wikipedia.org/wiki/Breadth-first_search) order, applying the supplied callback function to each tree element in turn. |
17 | 15 |
|
18 | 16 | Run `npm test binary-search-tree` to run the tests for this function to ensure that your implementation is correct. |
19 | 17 |
|
| 18 | +### Task 2. Implement Heapsort |
| 19 | +Inside the `src` directory you'll also find the `heap.js` file with the completed code the heap class. Your second task is to implement a sorting method called [heapsort](https://en.wikipedia.org/wiki/Heapsort) that uses the heap data structure in order to sort an array of numbers. Your `heapsort` function should return a new array containing all of the sorted data. |
| 20 | + |
| 21 | +Run `npm test heap` to run the tests for your `heapsort` function to ensure that your implementation is correct. |
| 22 | + |
20 | 23 | ### Task 3. Analyze some runtimes |
21 | | -Open up the `Data_Structures_Questions.md` file. This is where you'll jot down your answers for the runtimes of the two functions you just implemented. |
| 24 | +Open up the `Data_Structures_Answers.md` file. This is where you'll jot down your answers for the runtimes of the functions you just implemented. Be sure to also answer any other questions posed in the `Answers.md` file! |
22 | 25 |
|
23 | 26 | ## Algorithms |
24 | 27 | For the algorithms portion of the sprint challenge, you'll be answering questions posed in the `exercises.pdf` document inside the `algorithms` directory. Add your answers to the questions in the `Algorithms_Answers.md` file. |
0 commit comments