Files
Yudong Jin 772183705e 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
2026-03-28 04:24:07 +08:00

32 lines
1.1 KiB
Go

// File: binary_search_edge.go
// Created Time: 2023-08-23
// Author: Reanon (793584285@qq.com)
package chapter_searching
/* Бинарный поиск самого левого target */
func binarySearchLeftEdge(nums []int, target int) int {
// Эквивалентно поиску точки вставки target
i := binarySearchInsertion(nums, target)
// target не найден, вернуть -1
if i == len(nums) || nums[i] != target {
return -1
}
// Найти target и вернуть индекс i
return i
}
/* Бинарный поиск самого правого target */
func binarySearchRightEdge(nums []int, target int) int {
// Преобразовать задачу в поиск самого левого target + 1
i := binarySearchInsertion(nums, target+1)
// j указывает на самый правый target, а i — на первый элемент больше target
j := i - 1
// target не найден, вернуть -1
if j == -1 || nums[j] != target {
return -1
}
// Найти target и вернуть индекс j
return j
}