awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 repositorios

Awesome GitHub RepositoriesBit-Shifting Arithmetic

Implementation of mathematical operations using bit-shifting and binary logic to avoid standard operators.

Distinct from Integer Bit Analyzers: Implements complete arithmetic operations like division, whereas Integer Bit Analyzers focus on analyzing the bit patterns themselves.

Explore 7 awesome GitHub repositories matching software engineering & architecture · Bit-Shifting Arithmetic. Refine with filters or upvote what's useful.

Awesome Bit-Shifting Arithmetic GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • azl397985856/leetcodeAvatar de azl397985856

    azl397985856/leetcode

    55,758Ver en 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

    The project calculates the quotient of two integers without using multiplication or modulo operators via bit-shifting logic.

    JavaScriptalgoalgorithmalgorithms
    Ver en GitHub↗55,758
  • kodecocodes/swift-algorithm-clubAvatar de kodecocodes

    kodecocodes/swift-algorithm-club

    29,099Ver en GitHub↗

    This project is a comprehensive collection of common computer science algorithms and data structures implemented in Swift. It serves as an educational reference and library for studying computational complexity, algorithmic logic, and data structure engineering through practical code examples. The repository provides a wide suite of data structure implementations, including various types of linked lists, heaps, hash tables, and an extensive range of hierarchical trees such as Red-Black, B-Tree, and Splay trees. It also covers diverse sorting and searching techniques, from basic bubble sort to

    Provides operations for moving bits in a set left or right by a specified number of positions.

    Swiftalgorithmsdata-structuresswift
    Ver en GitHub↗29,099
  • mandliya/algorithms_and_data_structuresAvatar de mandliya

    mandliya/algorithms_and_data_structures

    6,145Ver en GitHub↗

    Este proyecto es una colección integral de librerías y toolkits de C++ que proporcionan implementaciones de referencia para estructuras de datos, algoritmos de grafos y lógica de bits. Sirve como una referencia de algoritmos en C++ que contiene más de 180 problemas de programación resueltos y un toolkit especializado para programación competitiva. El repositorio se distingue por sus extensas librerías de manipulación de bits de bajo nivel para comprobaciones de paridad, detección de endianness y lógica basada en XOR. También proporciona una amplia gama de soluciones de referencia para desafíos algorítmicos complejos que involucran backtracking, teoría de grafos y programación dinámica. La superficie de capacidades cubre organizadores de datos lineales y jerárquicos fundamentales, incluyendo listas enlazadas, pilas, colas y árboles de búsqueda binaria. Incluye un conjunto completo de algoritmos de grafos para búsqueda de caminos y árboles de expansión, varios métodos de ordenamiento y búsqueda, transformaciones de matrices y utilidades de procesamiento de cadenas. Además, cubre funciones computacionales matemáticas, compresión de datos sin pérdida y cifrados criptográficos básicos.

    Implements mathematical operations using bit-shifts and subtraction to avoid standard multiplication operators.

    C++algorithmbit-manipulationc
    Ver en GitHub↗6,145
  • crytic/slitherAvatar de crytic

    crytic/slither

    6,141Ver en GitHub↗

    Trail of Bits flags assembly shift operations where the value and shift amount arguments are swapped, producing incorrect results.

    Pythonethereumsoliditystatic-analysis
    Ver en GitHub↗6,141
  • alda-lang/aldaAvatar de alda-lang

    alda-lang/alda

    5,906Ver en GitHub↗

    Alda is a text-based music programming language and command-line tool for composing, playing, and live-coding musical scores. It functions as a MIDI composition engine that renders plain-text scores into audio output, and as a live coding environment where code entered in a read-eval-print loop produces real-time playback without restarting the interpreter. The system distinguishes itself through an event-driven playback engine that schedules timed note events, an instrument-attribute inheritance model that cascades properties like volume and tempo from global defaults to individual parts, an

    Changes note pitch by shifting octaves up or down using persistent angle bracket operators.

    Goaldahacktoberfestmusic
    Ver en GitHub↗5,906
  • dankogai/js-base64Avatar de dankogai

    dankogai/js-base64

    4,365Ver en GitHub↗

    js-base64 is a JavaScript library for encoding and decoding data between Base64 format and JavaScript strings or byte arrays. It provides utilities for converting binary data to Base64 strings and transforming those strings back into their original text or raw byte format. The project includes a Base64 string validator to verify if a sequence follows correct formatting, characters, and padding. It also supports the creation of URI-safe Base64 strings by replacing characters that would cause encoding errors in URIs and allows for the removal of padding. The library provides a prototype extens

    Implements low-level bit shifting to convert three bytes of binary data into four Base64 characters.

    JavaScript
    Ver en GitHub↗4,365
  • google/open-location-codeAvatar de google

    google/open-location-code

    4,329Ver en GitHub↗

    Open Location Code is a geocoding library and toolset used to transform global latitude and longitude coordinates into standardized, human-readable alphanumeric digital addresses and back again. It functions as an offline location coding system that generates unique identifiers for any location on Earth, specifically providing digital addresses for areas where formal street addresses or postal systems are missing. The system operates as a stateless algorithmic process, allowing coordinates to be encoded and decoded without the need for network access, internet connections, or external databas

    Uses bit-shifting and binary logic to convert floating point coordinates into discrete grid cell identifiers.

    Javaccplusplusdart
    Ver en GitHub↗4,329
  1. Home
  2. Software Engineering & Architecture
  3. Integer Arithmetic
  4. Integer Bit Analyzers
  5. Bit-Shifting Arithmetic

Explorar subetiquetas

  • Bit Sequence Shifting2 sub-etiquetasLow-level operations for moving bits in a set left or right by specified positions. **Distinct from Bit-Shifting Arithmetic:** Focuses on the shift operation itself rather than using shifts to implement a full arithmetic system