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,758GitHub पर देखें↗

    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,236GitHub पर देखें↗

    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,145GitHub पर देखें↗

    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,958GitHub पर देखें↗

    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.