awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repository-uri

Awesome GitHub RepositoriesNode Swapping Strategies

Algorithmic implementations for exchanging the positions of two nodes in a linked list.

Distinct from Linked Lists: Focuses specifically on the exchange of node positions rather than general sorting or manipulation.

Explore 4 awesome GitHub repositories matching software engineering & architecture · Node Swapping Strategies. Refine with filters or upvote what's useful.

Awesome Node Swapping Strategies GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • azl397985856/leetcodeAvatar azl397985856

    azl397985856/leetcode

    55,758Vezi pe 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

    Provides strategies and implementations for swapping nodes within a singly-linked list.

    JavaScriptalgoalgorithmalgorithms
    Vezi pe GitHub↗55,758
  • sparklemotion/nokogiriAvatar sparklemotion

    sparklemotion/nokogiri

    6,236Vezi pe GitHub↗

    Nokogiri is an XML and HTML parsing library that builds navigable document trees from strings, files, or URLs using native C parsers for speed and standards compliance. It provides a CSS selector engine that translates CSS3 selectors into XPath expressions for querying nodes, an XPath query interface with namespace support, a document manipulation toolkit for modifying parsed documents, XSD schema validation, and XSLT transformation capabilities. The library wraps libxml2 and libxslt C libraries with Ruby bindings for high-performance parsing, and integrates Google's Gumbo parser for standard

    Swaps a node with another node, fragment, or string and returns the replacement.

    Clibxml2libxsltnokogiri
    Vezi pe GitHub↗6,236
  • mandliya/algorithms_and_data_structuresAvatar mandliya

    mandliya/algorithms_and_data_structures

    6,145Vezi pe GitHub↗

    Acest proiect este o colecție cuprinzătoare de biblioteci și toolkit-uri C++ care oferă implementări de referință pentru structuri de date, algoritmi pe grafuri și logică pe biți. Acesta servește drept referință de algoritmi C++ conținând peste 180 de probleme de programare rezolvate și un toolkit specializat pentru programarea competitivă. Repository-ul se distinge prin biblioteci extinse de manipulare a biților la nivel scăzut pentru verificări de paritate, detectarea endianness-ului și logică bazată pe XOR. De asemenea, oferă o gamă largă de soluții de referință pentru provocări algoritmice complexe care implică backtracking, teoria grafurilor și programare dinamică. Suprafața de capabilități acoperă organizatori de date liniari și ierarhici fundamentali, inclusiv liste înlănțuite, stive, cozi și arbori binari de căutare. Include o suită completă de algoritmi pe grafuri pentru pathfinding și arbori de acoperire minimă, diverse metode de sortare și căutare, transformări de matrice și utilitare pentru procesarea șirurilor de caractere. În plus, acoperă funcții matematice computaționale, compresia datelor fără pierderi și cifruri criptografice de bază.

    Provides algorithmic implementations for exchanging the positions of two nodes by updating their memory pointers.

    C++algorithmbit-manipulationc
    Vezi pe GitHub↗6,145
  • soapyigu/leetcode-swiftAvatar soapyigu

    soapyigu/LeetCode-Swift

    4,958Vezi pe GitHub↗

    LeetCode-Swift is a collection of algorithm solutions written in Swift, designed for coding interview preparation. Each solution is implemented as a self-contained function with no external dependencies, making it easy to run and test. The repository organizes solutions by topic and company, and every file includes time and space complexity annotations, allowing quick evaluation of algorithmic efficiency. What sets this repository apart is its flat file structure and the way solutions are tagged with the companies that asked them in interviews, enabling targeted practice. All code resides in

    Swaps each pair of adjacent nodes in a singly linked list using three pointers.

    Swiftalgorithmdata-structuresinterview
    Vezi pe GitHub↗4,958
  1. Home
  2. Software Engineering & Architecture
  3. Linked Lists
  4. Node Swapping Strategies

Explorează sub-etichetele

  • Adjacent Pair SwapsAlgorithms that swap each pair of adjacent nodes in a linked list in linear time and constant space. **Distinct from Node Swapping Strategies:** Distinct from Node Swapping Strategies: specifically swaps adjacent pairs, not arbitrary node positions.
  • DOM Node SwapsSwap a node with another node, fragment, or string, returning the replacement. **Distinct from Node Swapping Strategies:** Distinct from Node Swapping Strategies: focuses on DOM node replacement with fragments or strings, not linked list position exchanges.