First commit
This commit is contained in:
1
IUT/Info1/TD/Exercices/heapsort/fonction.cpp
Normal file
1
IUT/Info1/TD/Exercices/heapsort/fonction.cpp
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
6
IUT/Info1/TD/Exercices/heapsort/fonction.h
Normal file
6
IUT/Info1/TD/Exercices/heapsort/fonction.h
Normal file
@@ -0,0 +1,6 @@
|
||||
struct Noeud{
|
||||
struct Noeud fils_gauche;
|
||||
struct Noeud fils_droit;
|
||||
};
|
||||
|
||||
void heapsort()
|
||||
6
IUT/Info1/TD/Exercices/heapsort/heapsort.py
Normal file
6
IUT/Info1/TD/Exercices/heapsort/heapsort.py
Normal file
@@ -0,0 +1,6 @@
|
||||
class Node:
|
||||
"""Binary tree"""
|
||||
def __init__(self):
|
||||
self.fils_gauche: Node
|
||||
self.fils_droit: Node
|
||||
|
||||
0
IUT/Info1/TD/Exercices/heapsort/main.cpp
Normal file
0
IUT/Info1/TD/Exercices/heapsort/main.cpp
Normal file
Reference in New Issue
Block a user