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

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

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

3 个仓库

Awesome GitHub RepositoriesArray Rotations

Rotating an array by 90-degree increments along a specified plane.

Distinct from Rotated Sorted Array Search: Handles geometric rotation of the array structure, distinct from searching rotated sorted arrays.

Explore 3 awesome GitHub repositories matching scientific & mathematical computing · Array Rotations. Refine with filters or upvote what's useful.

Awesome Array Rotations GitHub Repositories

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

    mandliya/algorithms_and_data_structures

    6,145在 GitHub 上查看↗

    This project is a comprehensive collection of C++ libraries and toolkits providing reference implementations for data structures, graph algorithms, and bitwise logic. It serves as a C++ algorithm reference containing over 180 solved coding problems and a specialized toolkit for competitive programming. The repository distinguishes itself through extensive low-level bit manipulation libraries for parity checks, endianness detection, and XOR-based logic. It also provides a wide array of reference solutions for complex algorithmic challenges involving backtracking, graph theory, and dynamic prog

    Implements array element shifting using a reversal-based algorithm to rotate the sequence.

    C++algorithmbit-manipulationc
    在 GitHub 上查看↗6,145
  • teivah/algodeckteivah 的头像

    teivah/algodeck

    5,819在 GitHub 上查看↗

    Algodeck is an open-source collection of flash cards designed for reviewing algorithms, data structures, and system design concepts, specifically curated for technical interview preparation. The project organizes knowledge into atomic question-and-answer pairs and incorporates spaced repetition scheduling to optimize long-term memory retention. The flash card catalog covers a broad range of computer science topics, including classic sorting algorithms like quicksort and mergesort, data structure operations for arrays, trees, heaps, tries, and graphs, as well as bit manipulation techniques for

    Reverses the whole array then reverses two sub-sections to shift elements by a given number of positions.

    HTML
    在 GitHub 上查看↗5,819
  • xtensor-stack/xtensorxtensor-stack 的头像

    xtensor-stack/xtensor

    3,748在 GitHub 上查看↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    Provides the ability to rotate arrays by 90-degree increments along a specified plane.

    C++c-plus-plus-14multidimensional-arraysnumpy
    在 GitHub 上查看↗3,748
  1. Home
  2. Scientific & Mathematical Computing
  3. Array Manipulations
  4. Array Rotations

探索子标签

  • Element RotationsShifts array elements by a given number of positions using reversal of sub-sections. **Distinct from Array Rotations:** Distinct from Array Rotations: handles linear element shifts, not geometric 90-degree rotations.
  • ElementaryAlgorithms that shift array elements by a given number of positions using reversal of sub-sections. **Distinct from Array Rotations:** Distinct from Array Rotations: covers linear element shifting, not geometric 90-degree rotations.