Add ru version (#1865)

* Add Russian docs site baseline

* Add Russian localized codebase

* Polish Russian code wording

* Update ru code translation.

* Update code translation and chapter covers.

* Fix pythontutor extraction.

* Add README and landing page.

* placeholder of profiles

* Use figures of English version

* Remove chapter paperbook
This commit is contained in:
Yudong Jin
2026-03-28 04:24:07 +08:00
committed by GitHub
parent 2ca570cc33
commit 772183705e
1958 changed files with 108186 additions and 0 deletions
@@ -0,0 +1,50 @@
/*
* File: binary_search_edge.rs
* Created Time: 2023-08-30
* Author: night-cruise (2586447362@qq.com)
*/
mod binary_search_insertion;
use binary_search_insertion::binary_search_insertion;
/* Бинарный поиск самого левого target */
fn binary_search_left_edge(nums: &[i32], target: i32) -> i32 {
// Эквивалентно поиску точки вставки target
let i = binary_search_insertion(nums, target);
// target не найден, вернуть -1
if i == nums.len() as i32 || nums[i as usize] != target {
return -1;
}
// Найти target и вернуть индекс i
i
}
/* Бинарный поиск самого правого target */
fn binary_search_right_edge(nums: &[i32], target: i32) -> i32 {
// Преобразовать задачу в поиск самого левого target + 1
let i = binary_search_insertion(nums, target + 1);
// j указывает на самый правый target, а i — на первый элемент больше target
let j = i - 1;
// target не найден, вернуть -1
if j == -1 || nums[j as usize] != target {
return -1;
}
// Найти target и вернуть индекс j
j
}
/* Driver Code */
fn main() {
// Массив с повторяющимися элементами
let nums = [1, 3, 6, 6, 6, 6, 6, 10, 12, 15];
println!("\nМассив nums = {:?}", nums);
// Бинарный поиск левой и правой границы
for target in [6, 7] {
let index = binary_search_left_edge(&nums, target);
println!("Индекс самого левого элемента {} равен {}", target, index);
let index = binary_search_right_edge(&nums, target);
println!("Индекс самого правого элемента {} равен {}", target, index);
}
}