Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

Linked-List-lib

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Linked-List-lib

Library for Studying and Applying Linked List Data Structure

  • 0.0.3
  • PyPI
  • Socket score

Maintainers
1

.. -- mode: rst --

|BuildTest|_ |PyPi|_ |License|_ |Downloads|_ |PythonVersion|_

.. |BuildTest| image:: https://travis-ci.com/daniel-yj-yang/Linked_List_lib.svg?branch=main .. _BuildTest: https://app.travis-ci.com/github/daniel-yj-yang/Linked_List_lib

.. |PythonVersion| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9-blue .. _PythonVersion: https://img.shields.io/badge/python-3.8%20%7C%203.9-blue

.. |PyPi| image:: https://img.shields.io/pypi/v/Linked_List_lib .. _PyPi: https://pypi.python.org/pypi/Linked_List_lib

.. |Downloads| image:: https://pepy.tech/badge/Linked_List_lib .. _Downloads: https://pepy.tech/project/Linked_List_lib

.. |License| image:: https://img.shields.io/pypi/l/Linked_List_lib .. _License: https://pypi.python.org/pypi/Linked_List_lib

============================================================ Library for Studying and Applying Linked List Data Structure

Installation

.. code-block::

pip install Linked_List_lib

Sample Usage

.. code-block::

from Linked_List_lib import sll_node # singly linked list node

curr = head = sll_node(1) curr.next = sll_node(2) curr = curr.next curr.next = sll_node(3) curr = curr.next curr.next = sll_node(4) curr = curr.next curr.next = sll_node(5)

print(head) print(head.middle) head = head.reversed print(head) head = head.reversed print(head)

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc