Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 89 additions & 0 deletions greedy_algorithms/jump_game.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/**
* @file
* @brief [Jumping Game](https://leetcode.com/problems/jump-game/)
* algorithm implementation
* @details
*
* Given an array of non-negative integers, you are initially positioned at the
* first index of the array. Each element in the array represents your maximum
* jump length at that position. Determine if you are able to reach the last
* index. This solution takes in input as a vector and output as a boolean to
* check if you can reach the last position. We name the indices good and bad
* based on whether we can reach the destination if we start at that position.
* We initialize the last index as lastPos.
* Here, we start from the end of the array and check if we can ever reach the
* first index. We check if the sum of the index and the maximum jump count
* given is greater than or equal to the lastPos. If yes, then that is the last
* position you can reach starting from the back. After the end of the loop, if
* we reach the lastPos as 0, then the destination can be reached from the start
* position.
*
* @author [Rakshaa Viswanathan](https://github.com/rakshaa2000)
* @author [David Leal](https://github.com/Panquesito7)
*/

#include <cassert> /// for assert
#include <iostream> /// for std::cout
#include <vector> /// for std::vector

/**
* @namespace
* @brief Greedy Algorithms
*/
namespace greedy_algorithms {
/**
* @brief Checks whether the given element (default is `1`) can jump to the last
* index.
* @param nums array of numbers containing the maximum jump (in steps) from that
* index
* @returns true if the index can be reached
* @returns false if the index can NOT be reached
*/
template <typename T>
bool can_jump(const std::vector<T> &nums) {
size_t lastPos = nums.size() - 1;
for (int i = nums.size() - 1; i >= 0; i--) {
if (i + nums[i] >= lastPos) {
lastPos = i;
}
}
return lastPos == 0;
}
} // namespace greedy_algorithms

/**
* @brief Function to test the above algorithm
* @returns void
*/
static void test() {
// 1st test
std::vector<int> nums = { 4, 3, 1, 0, 5 };
assert(greedy_algorithms::can_jump(nums) == true);

// 2nd test
nums = { 3, 2, 1, 0, 4 };
assert(greedy_algorithms::can_jump(nums) == false);

// 3rd test
nums = { 5, 9, 4, 7, 15, 3 };
assert(greedy_algorithms::can_jump(nums) == true);

// 4th test
nums = { 1, 0, 5, 8, 12 };
assert(greedy_algorithms::can_jump(nums) == false);

// 5th test
nums = {2, 1, 4, 7};
assert(greedy_algorithms::can_jump(nums) == true);

std::cout << "All tests have successfully passed!\n";
}

/**
* @brief Main function
* @returns 0 on exit
*/
int main() {
test(); // run self-test implementations
return 0;
}
68 changes: 0 additions & 68 deletions greedy_algorithms/jumpgame.cpp

This file was deleted.