Skip to content
Snippets Groups Projects
Commit edd064af authored by Loic Scoth's avatar Loic Scoth
Browse files

debut projet

parent 66a8aa43
No related branches found
No related tags found
No related merge requests found
class Btree() :
def __init__(self,size,string) :
self.size=size
self.string=string
#def search() :
#def insertion():
#def delete() :
#def linear() :
#def createTree() :
#def height() :
#def isArbre() :
\ No newline at end of file
class node() :
def __init__(self,size,keys,child,leaf) :
self.size=size
self.keys=keys
self.child=child
self.leaf=leaf
#def getSize() :
#def getPos() :
#def setNew() :
#def
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment