awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 个仓库

Awesome GitHub RepositoriesBinary Search Techniques

Algorithms for locating transition points or specific values in monotonic ranges.

Distinct from Finding Classification: No candidates cover algorithmic binary search for boolean predicates.

Explore 6 awesome GitHub repositories matching scientific & mathematical computing · Binary Search Techniques. Refine with filters or upvote what's useful.

Awesome Binary Search Techniques GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • azl397985856/leetcodeazl397985856 的头像

    azl397985856/leetcode

    55,758在 GitHub 上查看↗

    This project is a curated educational resource and solution repository for algorithmic challenges, specifically focused on LeetCode problems. It serves as a technical reference for common data structures and algorithmic patterns, providing verified code implementations across multiple programming languages alongside detailed logic and complexity analysis. The repository functions as a comprehensive study guide for competitive programming and technical interview preparation. It includes specialized learning tools such as an Anki flashcard dataset for spaced repetition and a browser extension t

    Applies binary search logic to count elements in a sequence that satisfy specific numerical constraints.

    JavaScriptalgoalgorithmalgorithms
    在 GitHub 上查看↗55,758
  • cp-algorithms/cp-algorithmscp-algorithms 的头像

    cp-algorithms/cp-algorithms

    10,805在 GitHub 上查看↗

    This project is a comprehensive reference for algorithms and data structures used to solve complex computational problems in competitive programming. It serves as a technical resource for implementing advanced mathematical programming, computational geometry, and graph theory. The repository provides detailed implementation guides for diversifying algorithmic techniques, including top-down and bottom-up dynamic programming optimization, number theory, and linear algebra. It features specific guides for complex tasks such as constructing planar graphs, solving linear Diophantine equations, and

    Implements logic to determine where a monotonic boolean predicate changes state over a given range.

    C++algorithm-competitionsalgorithmsalgorithms-and-data-structures
    在 GitHub 上查看↗10,805
  • apachecn/interviewapachecn 的头像

    apachecn/Interview

    8,944在 GitHub 上查看↗

    This project is a comprehensive knowledge base and study resource designed for mastering technical interviews. It provides structured guides, roadmaps, and curricula focused on data structures, algorithms, system design, and frontend engineering to help candidates prepare for software engineering screenings. The repository distinguishes itself by offering a holistic approach to professional advancement. Beyond technical drills, it includes a career development handbook covering resume optimization, salary benchmarking, and strategic negotiation coaching. It also provides detailed methodologie

    Explains the conceptual implementation of binary search for locating elements within sorted datasets.

    Jupyter Notebookinterviewkaggleleetcode
    在 GitHub 上查看↗8,944
  • phishman3579/java-algorithms-implementationphishman3579 的头像

    phishman3579/java-algorithms-implementation

    4,530在 GitHub 上查看↗

    该项目是一套全面的 Java 实现集合,涵盖了标准计算机科学算法、数据结构、图分析和数学计算。它提供了基本数据容器(包括树、堆、映射、Trie 和列表)的参考实现,以及常见的排序和搜索例程。 该库包含一个专门的图网络分析套件,涵盖最短路径、最小生成树和最大流。它还提供用于素数测试、模运算和快速傅里叶变换的数学工具,以及用于回文检测和编辑距离计算的文本处理工具。 代码库涵盖了更广泛的能力领域,例如用于序列分析的动态规划,以及用于通用软件开发和计算机科学教育的各种数据组织模式。

    Provides multiple search implementations including binary, linear, and interpolation search.

    Javaalgorithmdata-structuresgraph
    在 GitHub 上查看↗4,530
  • jack-lee-hiter/algorithmsbypythonJack-Lee-Hiter 的头像

    Jack-Lee-Hiter/AlgorithmsByPython

    4,082在 GitHub 上查看↗

    AlgorithmsByPython 是一个参考库和教育存储库,提供计算机科学基础知识的可运行 Python 实现。它作为算法模式、核心数据结构以及竞争性编程和技术面试挑战解决方案的综合指南。 该项目通过提供广泛的参考实现脱颖而出,包括一套专门针对常见 LeetCode 问题的解决方案。它专注于将理论计算逻辑转化为实用的 Python 代码,以供教育和实际使用。 该存储库涵盖了广泛的功能,包括线性集合、树和图的设计,以及搜索和排序策略的实现。它包括图论实用程序(如最短路径和最小生成树计算),并提供磁盘索引和文本模式匹配机制。

    Implements sequential, binary, and block-indexed search methods for retrieving elements from fixed data sets.

    Python
    在 GitHub 上查看↗4,082
  • 0xax/go-algorithms0xAX 的头像

    0xAX/go-algorithms

    1,949在 GitHub 上查看↗

    This library provides a comprehensive collection of fundamental computer science primitives implemented in Go. It serves as a resource for both educational purposes and production applications, offering standard tools for organizing, searching, and sorting data. The implementation leverages language-level type parameters to ensure type safety while maintaining flexibility across different data types. It utilizes interface-driven polymorphism and pointer-based memory management to define common behaviors and handle complex structures. To optimize performance, the library employs in-place data

    Provides efficient search algorithms for locating items within data structures using linear, binary, and graph-based traversal.

    Goalgorithmdata-structuresgo
    在 GitHub 上查看↗1,949
  1. Home
  2. Scientific & Mathematical Computing
  3. Binary Search Techniques

探索子标签

  • Element Search AlgorithmsAlgorithms for locating specific values or transition points within arrays using various search techniques. **Distinct from Binary Search Techniques:** Broadens binary search to include linear, interpolation, and quickselect search techniques.