Metadata-Version: 2.1
Name: dspack
Version: 0.0.2
Summary: Python Package of datastructures inbuilt
Home-page: https://code.swecha.org/SANJAY/python_package_contirbution
Author: Sanjay
Author-email: vsanjaychowdary1999@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Python Package with several DataStrucutes implemented

#from ds.sll import *
#from ds.dll import *
#from ds.graph import *
#from ds.avl import *
#from ds.trie import *
#from ds.segmenttree import *
#from ds.inset import *
#from ds.treeset import *
#from ds.avl import *

# To find about the implementation of datastructure you can use help commands
#help(avl)
#help(graph)
#help(bst)
#help(binarytree)
#help(inset)
#help(segmentree)
#help(trie)
#help(sll)
#help(dll)
#help(treeset)
#help(redblacktree)

# Sample implementaion of the Doubly Linked List Data Structure
#arr = [i for i in range(7)]
#dll = dll(arr) 		you can also declare a null dll
#print(dll)
#dll.add(7)
#dll.add(9,1)			add(index = 0 by default,val)
#print(dll)
#dll.remove(9)			dll.remove(val)
#a = dll.getNode(6)		gets pointer to the node
#print(a.data)
#print(len(dll))
#print(dll)



