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

initialisation des classes

parent edd064af
No related merge requests found
class Btree() :
def __init__(self,size,string) :
self.size=size
self.string=string
def __init__(self,name,root) :
self.name=name
self.root=root
#def search() :
#def insertion():
#def createNode() :
#def delete() :
#def linear() :
#def createTree() :
#def height() :
#def isArbre() :
\ No newline at end of file
#def isArbre() :
#def getNbKeys () :
#def getSize () :
#def changeRoot() :
#def isEqual() :
\ No newline at end of file
class node() :
def __init__(self,size,keys,child,leaf) :
self.size=size
def __init__(self,keys,child,kmin,kmax) :
self.keys=keys
self.child=child
self.leaf=leaf
self.kmin=kmin
self.kmax=kmax
#def getSize() :
#def getSizeNode() :
#def getPos() :
#def setNew() :
#def
\ No newline at end of file
#def setNewChild() :
#def removeChild() :
#def getSize() :
#def isLeaf() :
\ 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