Skip to content
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
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
41 changes: 41 additions & 0 deletions rust/Backtracking/combinations_of_sum_k.rs
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>> {
Copy link
Collaborator

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 use pub fn instead of fn, please update the solutions in Sliding Windows. Otherwise, we can stick to fn.

Copy link
Author

@nikhilmitrax nikhilmitrax Mar 30, 2025

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:

  1. Remove pub everywhere
  2. Add pub to all functions that should be usable outside a file.
  3. Add pub to all functions that should be usable outside a file, and add a Cargo.toml (possibly along with lib.rs and some tests, so that cargo test runs through the examples)

Copy link
Collaborator

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)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

Copy link
Collaborator

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?

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();
}
}
37 changes: 37 additions & 0 deletions rust/Backtracking/find_all_permutations.rs
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);
}
}
}
32 changes: 32 additions & 0 deletions rust/Backtracking/find_all_subsets.rs
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);
}
54 changes: 54 additions & 0 deletions rust/Backtracking/n_queens.rs
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);
}
}
54 changes: 54 additions & 0 deletions rust/Backtracking/phone_keypad_combinations.rs
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();
}
}
}