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
·

8 repositorios

Awesome GitHub RepositoriesSorted Array Merging

Techniques for combining multiple pre-sorted arrays into a single sorted output.

Distinct from Merge Sorts: Distinct from Merge Sorts as it handles pre-sorted arrays rather than the recursive division and sorting process.

Explore 8 awesome GitHub repositories matching software engineering & architecture · Sorted Array Merging. Refine with filters or upvote what's useful.

Awesome Sorted Array Merging 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 combines two sorted integer arrays into one sorted array using an in-place pointer strategy.

    JavaScriptalgoalgorithmalgorithms
    Ver en GitHub↗55,758
  • blankj/awesome-java-leetcodeAvatar de Blankj

    Blankj/awesome-java-leetcode

    8,698Ver en GitHub↗

    This project is a reference library of Java implementations for algorithmic coding challenges and data structure patterns. It serves as a study guide for technical interview preparation, providing a curated collection of LeetCode solutions organized by difficulty and algorithmic technique. The collection includes a mapping system that associates specific algorithm problems with the companies that frequently use them in technical interviews. The repository covers a wide range of capability areas, including tree algorithms for hierarchy construction and verification, string processing for sequ

    Implements algorithms for combining two sorted integer arrays into a single sorted output.

    Javaalgorithmalgorithmsdatastructure
    Ver en GitHub↗8,698
  • crazyguitar/pysheeetAvatar de crazyguitar

    crazyguitar/pysheeet

    8,150Ver en GitHub↗

    pysheeet es una biblioteca de referencia técnica que proporciona una colección curada de fragmentos de código y patrones de implementación para el desarrollo avanzado en Python, integración de sistemas y computación de alto rendimiento. Sirve como una guía completa para implementar programación de red de bajo nivel, extensiones nativas en C y programación asíncrona y concurrente. El proyecto proporciona frameworks especializados para el desarrollo y despliegue de modelos de lenguaje de gran tamaño, incluyendo herramientas para inferencia distribuida en GPU y servicio de alto rendimiento. También incluye patrones detallados para la orquestación de clústeres de computación de alto rendimiento, cubriendo la asignación de recursos de GPU y la gestión de cargas de trabajo en múltiples nodos. La biblioteca cubre una amplia superficie de capacidades, incluyendo comunicación de red segura y criptografía, mapeo objeto-relacional y gestión de bases de datos, y la implementación de estructuras de datos y algoritmos complejos. También proporciona utilidades para la gestión de memoria, interoperabilidad nativa a través de interfaces de funciones externas e integración de sistemas operativos a nivel de sistema.

    Provides implementation patterns for combining multiple pre-sorted arrays into a single sorted output.

    Python
    Ver en GitHub↗8,150
  • kevin-wayne/algs4Avatar de kevin-wayne

    kevin-wayne/algs4

    7,519Ver en GitHub↗

    algs4 is a Java data structures library and algorithm reference collection designed as the source code for a standard computer science textbook curriculum. It provides a comprehensive suite of fundamental implementations for sorting, searching, and core data organization. The project serves as a graph theory framework, offering tools for representing directed and undirected graphs and performing complex traversals and pathfinding. It also includes a broad sorting algorithm suite and a specialized library of Java data structures, including stacks, queues, priority queues, and symbol tables. I

    Provides a mechanism to merge multiple sorted input streams into a single sorted output using a priority queue.

    Java
    Ver en GitHub↗7,519
  • sharingsource/logicstack-leetcodeAvatar de SharingSource

    SharingSource/LogicStack-LeetCode

    7,495Ver en GitHub↗

    LogicStack-LeetCode is a curated repository of solved algorithm problems and data structure implementations, primarily drawn from the LeetCode platform. Its core identity is a structured collection of solutions designed to support technical interview preparation and competitive programming practice, with each solution accompanied by complexity analyses to help engineers understand performance trade-offs. The repository distinguishes itself through its breadth of coverage across fundamental algorithmic patterns and data structures. It includes implementations for array manipulation, string pro

    Implements algorithms for combining multiple pre-sorted arrays into a single sorted output.

    algorithminterview-practiceinterview-questions
    Ver en GitHub↗7,495
  • nvidia/isaac-gr00tAvatar de NVIDIA

    NVIDIA/Isaac-GR00T

    6,222Ver en GitHub↗

    Sorts arrays on the GPU using parallel algorithms for significant performance gains.

    Jupyter Notebook
    Ver en GitHub↗6,222
  • chanda-abdul/several-coding-patterns-for-solving-data-structures-and-algorithms-problems-during-interviewsAvatar de Chanda-Abdul

    Chanda-Abdul/Several-Coding-Patterns-for-Solving-Data-Structures-and-Algorithms-Problems-during-Interviews

    4,129Ver en GitHub↗

    This repository is a curated guide and implementation library of coding patterns used to solve data structures and algorithms problems. It serves as a technical interview study resource, providing a comprehensive set of strategies and computational logic examples for optimizing time and space complexity. The project focuses on standardized algorithmic patterns, including sliding windows, two pointers, and dynamic programming. It features specific implementations for a wide range of challenges, such as LeetCode problem solutions and specialized techniques like cyclic sort and bitwise XOR opera

    Implements techniques for combining multiple pre-sorted arrays into a single sorted output using a min-heap.

    algorithmscoding-interviewsdata-structures
    Ver en GitHub↗4,129
  • hoanhan101/algoAvatar de hoanhan101

    hoanhan101/algo

    3,678Ver en GitHub↗

    This project is a Go algorithm implementation library and a reference for data structures. It serves as a collection of solved coding interview problems and an algorithmic pattern collection, providing a reference of over 100 common challenges implemented in Go. The library focuses on specific problem-solving strategies, including sliding windows, two pointers, and dynamic programming. It provides coded examples of standard sorting, searching, and graph traversal techniques to facilitate the study of algorithmic patterns. The repository covers a broad range of capabilities, including array a

    Combines two pre-sorted integer arrays into a single sorted array using a two-pointer approach.

    Go
    Ver en GitHub↗3,678
  1. Home
  2. Software Engineering & Architecture
  3. Sorting Algorithms
  4. Sorted Array Merging

Explorar subetiquetas

  • Composite Ordering RulesMerging multiple comparison rules into a single composite ordering for sorting. **Distinct from Sorted Array Merging:** Focuses on combining multiple rules into one, rather than merging two already-sorted arrays.
  • GPU-Accelerated SortersSorts arrays on the GPU using parallel algorithms, achieving 5x to 100x faster performance than CPU-based sorting. **Distinct from Sorted Array Merging:** Distinct from Sorted Array Merging: focuses on GPU-accelerated sorting, not merging pre-sorted arrays.
  • Symmetric Sorted GenerationAlgorithms that produce sorted outputs from inputs with opposing signs (like squares of negative and positive numbers). **Distinct from Sorted Array Merging:** Specific to generating sorted squares, distinct from merging pre-sorted arrays.