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

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

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

4 个仓库

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

用 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

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

    JavaScriptalgoalgorithmalgorithms
    在 GitHub 上查看↗55,758
  • sparklemotion/nokogirisparklemotion 的头像

    sparklemotion/nokogiri

    6,236在 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
    在 GitHub 上查看↗6,236
  • 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

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

    C++algorithmbit-manipulationc
    在 GitHub 上查看↗6,145
  • soapyigu/leetcode-swiftsoapyigu 的头像

    soapyigu/LeetCode-Swift

    4,958在 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
    在 GitHub 上查看↗4,958
  1. Home
  2. Software Engineering & Architecture
  3. Linked Lists
  4. Node Swapping Strategies

探索子标签

  • 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.