I hereby claim:
- I am emilydelorme on github.
- I am emilydelorme (https://keybase.io/emilydelorme) on keybase.
- I have a public key ASD3wDQpL7QcDg8WSsANuDRkbyZGU--NAW2dX6d7cBBQGQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # | |
| # /etc/pacman.conf | |
| # | |
| # See the pacman.conf(5) manpage for option and repository directives | |
| # | |
| # GENERAL OPTIONS | |
| # | |
| [options] | |
| # The following paths are commented out with their default values listed. |
| #!/hint/bash | |
| # | |
| # /etc/makepkg.conf | |
| # | |
| ######################################################################### | |
| # SOURCE ACQUISITION | |
| ######################################################################### | |
| # | |
| #-- The download utilities that makepkg should use to acquire sources |
| module TriEx1 | |
| use import int.Int | |
| use import ref.Ref | |
| use import array.Array | |
| use import array.IntArraySorted | |
| use import array.ArraySwap | |
| use import array.ArrayPermut | |
| use import array.ArrayEq | |
| .equ PRINT_INT, 1 | |
| .equ PRINT_STRING, 4 | |
| .equ READ_INT, 5 | |
| .equ EXIT, 10 | |
| .text | |
| #################################### | |
| # Fonction rechercheDichotomique() # | |
| #################################### |
| ################################## | |
| # L3INFO - TP ARC2 # | |
| # Manipulation de tableaux # | |
| ################################## | |
| .equ PRINT_INT, 1 | |
| .equ PRINT_STRING, 4 | |
| .equ READ_INT, 5 | |
| .equ EXIT, 10 | |
| .text |
| // Fonctions réalisé avec Camille Police et Charles Delorme (uniquement) | |
| public void affect(AbstractImage img) { | |
| Iterator<Node> it = this.iterator() | |
| Iterator<Node> it2 = img.iterator(); | |
| it.clear(); //On clear this pour ensuite recopier img dans this | |
| affectAux(it, it1); // On appelle une fonction récursive pour recréer l'arbre | |
| } |