Socket
Socket
Sign inDemoInstall

linkedlistpy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkedlistpy

some useful tools for linked lists


Maintainers
1

pylinkedlist - a Linked List library

This library provides linked lists so that you won't have to build your own! (especially for those evil interviews)

GitHub Workflow Status pypi GitHub stars

Installation

pip install linkedlistpy

Quick start

from linkedlistpy import LinkedList

linked_list = LinkedList()

linked_list.append(1)
linked_list.append_left([3, "foo", tuple, true])

print(linked_list)
>> [3, "foo", tuple, true, 1]

linked_list.reverse()

print(linked_list)
>> [1, true, tuple, "foo", 3]

Features included (for now)

Linked Lists

  • Singly Linked list
  • Doubly Linked list
  • Circular Linked list
  • Circular Doubly Linked list

Methods

  • built-in
    • str
    • list
    • len
  • append
  • append_left
  • insert
  • delete
  • reverse

Keywords

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