-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rust code for backtracking problems #79
Open
nikhilmitrax
wants to merge
3
commits into
ByteByteGoHq:main
Choose a base branch
from
nikhilmitrax:rust/backtracking
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+218
−0
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
pub fn combinations_of_sum_k(nums: Vec<i32>, target: i32) -> Vec<Vec<i32>> { | ||
let mut res: Vec<Vec<i32>> = Vec::new(); | ||
let mut combination: Vec<i32> = Vec::new(); | ||
|
||
dfs(&mut combination, 0, &nums, target, &mut res); | ||
|
||
res | ||
} | ||
|
||
fn dfs( | ||
combination: &mut Vec<i32>, | ||
start_index: usize, | ||
nums: &Vec<i32>, | ||
target: i32, | ||
res: &mut Vec<Vec<i32>> | ||
) { | ||
// Termination condition: If the target is equal to 0, we found a combination | ||
// that sums to 'k'. | ||
if target == 0 { | ||
res.push(combination.clone()); | ||
return; | ||
} | ||
|
||
// Termination condition: If the target is less than 0, no more valid | ||
// combinations can be created by adding it to the current combination. | ||
if target < 0 { | ||
return; | ||
} | ||
|
||
// Starting from start_index, explore all combinations after adding nums[i]. | ||
for i in start_index..nums.len() { | ||
// Add the current number to create a new combination. | ||
combination.push(nums[i]); | ||
|
||
// Recursively explore all paths that branch from this new combination. | ||
dfs(combination, i, nums, target - nums[i], res); | ||
|
||
// Backtrack by removing the number we just added. | ||
combination.pop(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
pub fn find_all_permutations(nums: Vec<i32>) -> Vec<Vec<i32>> { | ||
let mut res: Vec<Vec<i32>> = Vec::new(); | ||
let mut candidate: Vec<i32> = Vec::new(); | ||
let mut used: std::collections::HashSet<i32> = std::collections::HashSet::new(); | ||
|
||
backtrack(&nums, &mut candidate, &mut used, &mut res); | ||
|
||
res | ||
} | ||
|
||
fn backtrack( | ||
nums: &Vec<i32>, | ||
candidate: &mut Vec<i32>, | ||
used: &mut std::collections::HashSet<i32>, | ||
res: &mut Vec<Vec<i32>> | ||
) { | ||
// If the current candidate is a complete permutation, add it to the result. | ||
if candidate.len() == nums.len() { | ||
res.push(candidate.clone()); | ||
return; | ||
} | ||
|
||
for &num in nums { | ||
if !used.contains(&num) { | ||
// Add 'num' to the current permutation and mark it as used. | ||
candidate.push(num); | ||
used.insert(num); | ||
|
||
// Recursively explore all branches using the updated permutation candidate. | ||
backtrack(nums, candidate, used, res); | ||
|
||
// Backtrack by reversing the changes made. | ||
candidate.pop(); | ||
used.remove(&num); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
pub fn find_all_subsets(nums: Vec<i32>) -> Vec<Vec<i32>> { | ||
let mut res: Vec<Vec<i32>> = Vec::new(); | ||
let mut curr_subset: Vec<i32> = Vec::new(); | ||
|
||
backtrack(0, &mut curr_subset, &nums, &mut res); | ||
|
||
res | ||
} | ||
|
||
fn backtrack( | ||
i: usize, | ||
curr_subset: &mut Vec<i32>, | ||
nums: &Vec<i32>, | ||
res: &mut Vec<Vec<i32>> | ||
) { | ||
// Base case: if all elements have been considered, add the | ||
// current subset to the output. | ||
if i == nums.len() { | ||
res.push(curr_subset.clone()); | ||
return; | ||
} | ||
|
||
// Include the current element and recursively explore all paths | ||
// that branch from this subset. | ||
curr_subset.push(nums[i]); | ||
backtrack(i + 1, curr_subset, nums, res); | ||
|
||
// Exclude the current element and recursively explore all paths | ||
// that branch from this subset. | ||
curr_subset.pop(); | ||
backtrack(i + 1, curr_subset, nums, res); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
pub fn n_queens(n: i32) -> i32 { | ||
let mut res = 0; | ||
let mut diagonals_set = std::collections::HashSet::new(); | ||
let mut anti_diagonals_set = std::collections::HashSet::new(); | ||
let mut cols_set = std::collections::HashSet::new(); | ||
|
||
dfs(0, &mut diagonals_set, &mut anti_diagonals_set, &mut cols_set, n, &mut res); | ||
|
||
res | ||
} | ||
|
||
fn dfs( | ||
r: i32, | ||
diagonals_set: &mut std::collections::HashSet<i32>, | ||
anti_diagonals_set: &mut std::collections::HashSet<i32>, | ||
cols_set: &mut std::collections::HashSet<i32>, | ||
n: i32, | ||
res: &mut i32 | ||
) { | ||
// Termination condition: If we have reached the end of the rows, | ||
// we've placed all 'n' queens. | ||
if r == n { | ||
*res += 1; | ||
return; | ||
} | ||
|
||
for c in 0..n { | ||
let curr_diagonal = r - c; | ||
let curr_anti_diagonal = r + c; | ||
|
||
// If there are queens on the current column, diagonal or | ||
// anti-diagonal, skip this square. | ||
if cols_set.contains(&c) || | ||
diagonals_set.contains(&curr_diagonal) || | ||
anti_diagonals_set.contains(&curr_anti_diagonal) { | ||
continue; | ||
} | ||
|
||
// Place the queen by marking the current column, diagonal, and | ||
// anti-diagonal as occupied. | ||
cols_set.insert(c); | ||
diagonals_set.insert(curr_diagonal); | ||
anti_diagonals_set.insert(curr_anti_diagonal); | ||
|
||
// Recursively move to the next row to continue placing queens. | ||
dfs(r + 1, diagonals_set, anti_diagonals_set, cols_set, n, res); | ||
|
||
// Backtrack by removing the current column, diagonal, and | ||
// anti-diagonal from the hash sets. | ||
cols_set.remove(&c); | ||
diagonals_set.remove(&curr_diagonal); | ||
anti_diagonals_set.remove(&curr_anti_diagonal); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
use std::collections::HashMap; | ||
|
||
pub fn phone_keypad_combinations(digits: String) -> Vec<String> { | ||
if digits.is_empty() { | ||
return Vec::new(); | ||
} | ||
|
||
let mut keypad_map = HashMap::new(); | ||
keypad_map.insert('2', "abc"); | ||
keypad_map.insert('3', "def"); | ||
keypad_map.insert('4', "ghi"); | ||
keypad_map.insert('5', "jkl"); | ||
keypad_map.insert('6', "mno"); | ||
keypad_map.insert('7', "pqrs"); | ||
keypad_map.insert('8', "tuv"); | ||
keypad_map.insert('9', "wxyz"); | ||
|
||
let mut res: Vec<String> = Vec::new(); | ||
let mut curr_combination: Vec<char> = Vec::new(); | ||
|
||
let digits_chars: Vec<char> = digits.chars().collect(); | ||
backtrack(0, &mut curr_combination, &digits_chars, &keypad_map, &mut res); | ||
|
||
res | ||
} | ||
|
||
fn backtrack( | ||
i: usize, | ||
curr_combination: &mut Vec<char>, | ||
digits: &Vec<char>, | ||
keypad_map: &HashMap<char, &str>, | ||
res: &mut Vec<String> | ||
) { | ||
// Termination condition: if all digits have been considered, add the | ||
// current combination to the output list. | ||
if curr_combination.len() == digits.len() { | ||
res.push(curr_combination.iter().collect()); | ||
return; | ||
} | ||
|
||
let digit = digits[i]; | ||
if let Some(letters) = keypad_map.get(&digit) { | ||
for letter in letters.chars() { | ||
// Add the current letter. | ||
curr_combination.push(letter); | ||
|
||
// Recursively explore all paths that branch from this combination. | ||
backtrack(i + 1, curr_combination, digits, keypad_map, res); | ||
|
||
// Backtrack by removing the letter we just added. | ||
curr_combination.pop(); | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The existing rust solutions in the Sliding Windows chapter don't use
pub fn
. If there is a reason to usepub fn
instead offn
, please update the solutions in Sliding Windows. Otherwise, we can stick tofn
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe
pub fn
makes more sense since the functions aren't really useful without having public visibility and being isolated in a file.As is, the rust functions aren't particularly usable without a module setup and at least a project definition (
Cargo.toml
)I see 3 potential paths moving forward, and I'm perfectly fine with all 3 options, do you have a preference?
Options:
cargo test
runs through the examples)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Option 1 please!
Here is some background if you're interested: #54 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see the change, have you pushed?