├── CalcoloCombinatorio ├── 00show_recursion_tree.c ├── 01calcolocombinatorio.c ├── 01max_array.c ├── 02LIS.c ├── 02anagrammi_con_ripetizioni.c ├── 02recursive_factorial.c ├── 03anagrammi_distinti.c ├── 03otto-regine-powerset.c ├── 03recursive_fibonacci.c ├── 04 Codice C per esempi di problemi di ricerca e ottimizzazione │ ├── 01interruttori_comb_sempl.c │ ├── 02LIS.c │ ├── 03otto-regine-powerset.c │ ├── 04otto-regine-disp-sempl.c │ ├── 05otto-regine-comb-sempl.c │ ├── 06otto-regine-disp-ripet.c │ ├── 07otto-regine-perm-sempl.c │ ├── 08otto-regine-perm-sempl-ott.c │ ├── 09aritmetica_verbale.c │ ├── 10sudoku.c │ ├── 11sudoku1soluzione.c │ ├── 12cavallo.c │ └── 13maze.c ├── 04otto-regine-disp-sempl.c ├── 04powerset.c ├── 04recursive_gcd.c ├── 05otto-regine-comb-sempl.c ├── 05part_semplif.c ├── 05recursive_integer_product.c ├── 06determinant.c ├── 06otto-regine-disp-ripet.c ├── 06part_Er.c ├── 07otto-regine-perm-sempl.c ├── 07part_k_blocchi_Er.c ├── 07recursive_binsearch.c ├── 08contocorrente.c ├── 08otto-regine-perm-sempl-ott.c ├── 08reverse_print.c ├── 09aritmetica_verbale.c ├── 09knapsack_no_pruning │ ├── Item.c │ ├── Item.h │ └── main.c ├── 09recursive_list_processing.c ├── 10simple_sum_of_subsets.c ├── 10tree.c ├── 11prefix_eval.c ├── 11sum_of_subsets.c ├── 12cavallo.c ├── 12knapsack_pruning │ ├── Item.c │ ├── Item.h │ └── main.c ├── 12towers_of_hanoi.c ├── 13ruler.c ├── 14function_call.c ├── 15tail_recursive_factorial.c ├── 16iterative_fibonacci.c ├── 17iterative_binsearch.c ├── 18iterative_factorial.c ├── 19tr2iterfact.c ├── 3_3_10_CombinazioniRipetute.c ├── 3_3_11_Powerset1.c ├── 3_3_11_Powerset2.c ├── 3_3_11_Powerset3.c ├── 3_3_12_PartizionamentoDispRip.c ├── 3_3_12_PartizionamentoER.c ├── 3_3_12_PartizionamentoERblocchi.c ├── 3_3_3_PrincipioMoltiplicazione.c ├── 3_3_5_DisposizioniSemplici.c ├── 3_3_6_DisposizioniRipetute.c ├── 3_3_7_PermutazioniSemplici.c ├── 3_3_8_PermutazioniRipetute.c ├── 3_3_9_CombinazioniSemplici.c ├── 3_4_HaltFlag.c ├── 3_4_ValoreRitorno.c ├── 3_5_1_ContoCorrente.c ├── 3_5_2_Zaino.c ├── 4_2_1_SubsetSum.c ├── 4_3_1_SubsetSumPruning.c ├── 4_3_2_ZainoPruning.c ├── 4_3_3_QuadratoMagico.c ├── 4_3_3_QuadratoMagicoPruning.c ├── 4_3_3_QuadratoMagicoPruningImplicazione.c ├── 4_5_1_Sostanze.c ├── 4_5_1_Sostanze2.c ├── 4_5_2_Prodotti.c ├── 5_3_Labirinto.c ├── 5_4_ReteCalcolatori.c ├── Calcolo_Combinatorio_formulario.pdf ├── Codice C per 02 Gli ordinamenti ricorsivi (1) │ ├── ConvexHull │ │ ├── convexhull.c │ │ ├── file1.txt │ │ ├── file3.txt │ │ ├── stack.c │ │ └── stack.h │ └── RecursiveSort │ │ ├── Item.c │ │ ├── Item.h │ │ ├── RecursiveSorting.c │ │ ├── RecursiveSorting.h │ │ └── main.c ├── Codice C per 03 Problemi di ricerca e ottimizzazione (1) │ ├── 01calcolocombinatorio.c │ ├── 02anagrammi_con_ripetizioni.c │ ├── 03anagrammi_distinti.c │ ├── 04powerset.c │ ├── 05part_semplif.c │ ├── 06part_Er.c │ ├── 07part_k_blocchi_Er.c │ ├── 08contocorrente.c │ ├── 09knapsack_no_pruning │ │ ├── Item.c │ │ ├── Item.h │ │ └── main.c │ ├── 10simple_sum_of_subsets.c │ └── 11sum_of_subsets.c ├── Codice per 01 Ricorsione e paradigma divide et impera │ ├── 00show_recursion_tree.c │ ├── 01max_array.c │ ├── 02recursive_factorial.c │ ├── 03recursive_fibonacci.c │ ├── 04recursive_gcd.c │ ├── 05recursive_integer_product.c │ ├── 06recursive_binsearch.c │ ├── 07reverse_print.c │ ├── 08towers_of_hanoi.c │ ├── 09ruler.c │ ├── 10function_call.c │ ├── 11tail_recursive_factorial.c │ ├── 12iterative_fibonacci.c │ ├── 13iterative_binsearch.c │ ├── 14iterative_factorial.c │ └── 15tr2iterfact.c ├── Factorial with explicit stack │ ├── main.c │ ├── stack.c │ └── stack.h ├── anagrammiconripetizioni.c ├── calcolocombinatorio.c ├── interruttori │ ├── 01interruttori.c │ └── switches.txt ├── permutazioni.c ├── prodmoltschemagrafico.pdf ├── sodoku │ ├── 10sudoku.c │ └── sodoku.txt └── sodoku1 │ ├── 11sudoku1soluzione.c │ └── sodoku1.txt ├── Esercizi Generali ├── 4.1.1 FIFO │ ├── ItemADT │ │ ├── Item.c │ │ ├── Item.h │ │ ├── Queue.c │ │ ├── Queue.h │ │ ├── in.txt │ │ ├── main.c │ │ └── out.txt │ └── ItemQuasiADT │ │ ├── Item.c │ │ ├── Item.h │ │ ├── Queue.c │ │ ├── Queue.h │ │ ├── in.txt │ │ ├── main.c │ │ └── out.txt ├── 4.1.2 sportellosingolo │ ├── Item.c │ ├── Item.h │ ├── PQ.c │ ├── PQ.h │ ├── in.txt │ └── main.c ├── 4.1.3 sportellimultipli │ ├── Item.c │ ├── Item.h │ ├── PQ.c │ ├── PQ.h │ ├── in.txt │ └── main.c ├── 4.1.4 catalogoprodotti │ ├── BST.c │ ├── BST.h │ ├── Item.c │ ├── Item.h │ ├── main.c │ ├── prodotti.txt │ └── prodotti1.txt ├── 4.1.5 estrazioneAdHocBST │ ├── BST.c │ ├── BST.h │ ├── Item.c │ ├── Item.h │ ├── alb1.txt │ ├── main.c │ └── out.txt ├── 4.1.6 STstatica │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── input.txt │ └── main.c ├── 4.1.7 STdinamica │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── input.txt │ ├── main.c │ └── output.txt ├── 4.1.8 multimediali │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── customers.txt │ ├── main.c │ └── traffic.txt ├── 4.2.1 torneo │ ├── itemADT │ │ ├── Item.c │ │ ├── Item.h │ │ ├── PQ.c │ │ ├── PQ.h │ │ ├── main.c │ │ ├── torneo.txt │ │ └── torneo1.txt │ └── itemQuasiADT │ │ ├── Item.c │ │ ├── Item.h │ │ ├── PQ.c │ │ ├── PQ.h │ │ ├── main.c │ │ ├── torneo.txt │ │ └── torneo1.txt ├── 4.2.2 impianti │ ├── BST.c │ ├── BST.h │ ├── ST.c │ ├── ST.h │ ├── main.c │ ├── pass.txt │ ├── skier.c │ ├── skier.h │ ├── skilift.c │ ├── skilift.h │ └── skilift.txt ├── 4.3.1 GrafoRegolare │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── in.txt │ └── main.c ├── 4.3.2 DiametroGrafo │ ├── BST.c │ ├── BST.h │ ├── Graph.c │ ├── Graph.h │ ├── Queue.c │ ├── Queue.h │ ├── in.txt │ ├── in2.txt │ ├── in3.txt │ ├── in_mini.txt │ ├── main │ └── main.c ├── 4.3.3 ReteElaboratori │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── grafo.txt │ └── main.c ├── 4.3.4 SCC │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── in0.txt │ ├── in1.txt │ ├── in2.txt │ ├── in3.txt │ └── main.c ├── 4.3.5 AllPairsShortestPaths │ ├── Graph.c │ ├── Graph.h │ ├── PQ.c │ ├── PQ.h │ ├── ST.c │ ├── ST.h │ ├── cormen.txt │ ├── grafo.txt │ ├── grafo1.txt │ ├── grafo2.txt │ └── main.c ├── 4.3.6 dungeon │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── main.c │ └── tempio.txt ├── 4.3.7 solitario │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── graphScore.txt │ └── main.c ├── 5.1.1 bell │ └── bell.c ├── 5.1.2 hofstader │ └── hofstader.c ├── 5.1.3 sommericorsive │ └── sommericorsive.c ├── 5.1.4 convbase │ └── convbase.c ├── 5.1.5 selezione │ ├── Item.c │ ├── Item.h │ └── selezione.c ├── 5.1.6 fuoriordine │ └── fuoriordine.c ├── 5.1.7 sottoalberi │ └── sottoalberi.c ├── 5.1.8 treemirroring │ └── treemirror.c ├── 5.1.9 gray │ ├── grayVers1 │ │ └── grayVers1.c │ └── grayVers2 │ │ └── grayVers2.c ├── 5.2.1 menu │ ├── menu.c │ └── piatti.txt ├── 5.2.10 moli │ ├── moli.c │ └── moli.txt ├── 5.2.2 composizionestringhe │ ├── composizionestringhe.c │ └── stringhe.txt ├── 5.2.3 decomposizionestringhe │ └── decomposizione.c ├── 5.2.4 addizioniignote │ ├── addizioniignoteVers1 │ │ └── addizioni_ignote.c │ └── addizioniignoteVers2 │ │ └── addizioni_ignote_pruning.c ├── 5.2.5 spellcasting │ └── spellcasting.c ├── 5.2.6 coverset │ └── coverset.c ├── 5.2.7 vassoiopasticcini │ ├── paste.txt │ └── vassoio.c ├── 5.2.8 generazionestringhe │ ├── generazione_stringhe.c │ └── stringhe.txt ├── 5.2.9 carrellospesa │ ├── carrello_spesa.c │ └── prodotti.txt ├── 5.3.1 medicinali │ ├── farmaci.txt │ ├── medicinali.c │ ├── ts.c │ └── ts.h ├── 5.3.10 turista │ ├── attrazioni.txt │ ├── collegamenti.txt │ └── turista.c ├── 5.3.11 socialnetwork │ ├── cliqueDispRip │ │ ├── clique.c │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── grafo.txt │ │ ├── list.c │ │ ├── list.h │ │ ├── ts.c │ │ └── ts.h │ ├── cliqueDivNoPrun │ │ ├── clique.c │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── grafo.txt │ │ ├── list.c │ │ ├── list.h │ │ ├── ts.c │ │ └── ts.h │ └── cliqueDivPrun │ │ ├── clique.c │ │ ├── cliqueDivPrun.cbp │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── grafo.txt │ │ ├── list.c │ │ ├── list.h │ │ ├── ts.c │ │ └── ts.h ├── 5.3.12 agenzialavoro │ ├── A.txt │ ├── B.txt │ ├── matchStabile.c │ ├── ts.c │ └── ts.h ├── 5.3.13 equilibrio │ ├── equilibrioDP │ │ ├── frecce.txt │ │ └── freccedp.c │ └── equilibrioRic │ │ ├── frecce.c │ │ └── frecce.txt ├── 5.3.2 inventario │ ├── equip.txt │ └── inventario.c ├── 5.3.3 viaemilia │ ├── citta.txt │ └── viaemilia.c ├── 5.3.4 corpolibero1 │ ├── corpolibero1Greedy │ │ ├── corpolibero1.c │ │ └── elementi.txt │ ├── corpolibero1Vers1 │ │ ├── corpolibero1.c │ │ └── elementi.txt │ └── corpolibero1Vers2 │ │ ├── corpolibero1.c │ │ └── elementi.txt ├── 5.3.5 corpolibero2 │ ├── corpolibero2a1 │ │ ├── corpolibero2a1.c │ │ ├── elementi.txt │ │ └── soluzione.txt │ ├── corpolibero2a2 │ │ ├── arraySol.c │ │ ├── arraySol.h │ │ ├── corpolibero2a2.c │ │ ├── elementi.txt │ │ ├── sol.c │ │ ├── sol.h │ │ └── soluzione.txt │ ├── corpolibero2b │ │ ├── corpolibero2b.c │ │ ├── elementi.txt │ │ └── soluzione.txt │ └── corpolibero2greedy │ │ ├── corpolibero2greedy.c │ │ └── elementi.txt ├── 5.3.6 towerdefense │ ├── towerdefenseVers1 │ │ ├── alleati.txt │ │ ├── nemici.txt │ │ ├── risorse.txt │ │ └── towerdef1.c │ └── towerdefenseVers2 │ │ ├── alleati.txt │ │ ├── nemici.txt │ │ ├── risorse.txt │ │ └── towerdef2.c ├── 5.3.7 koala │ ├── famiglie.txt │ ├── habitat.txt │ ├── koala.c │ └── nemici.txt ├── 5.3.8 societasportiva │ ├── in.txt │ └── societasportiva.c ├── 5.3.9 societasportivagreedy │ ├── in.txt │ └── societasportiva.c ├── CodiceGrayeordinamentimultipli │ ├── catalogo.txt │ ├── gray_static.c │ └── slides.pdf ├── camminonellabirinto │ ├── maze_a.c │ ├── maze_b.c │ └── slides.pdf ├── e.txt ├── gomoku │ ├── Gomoku.pdf │ ├── gomoku1.c │ ├── gomoku2.c │ ├── gomoku3.c │ ├── gomoku4.c │ ├── gomoku5.c │ └── intro_gomoku.pdf └── matricisparse │ ├── ms1.c │ ├── ms_2.c │ └── slides.pdf ├── Graph ├── Directed Graph │ ├── DAG │ │ ├── adjacency list │ │ │ ├── DAG.c │ │ │ ├── DAG.h │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── adjacency list.cbp │ │ │ ├── adjacency list.depend │ │ │ ├── adjacency list.layout │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── adjacency list.exe │ │ │ ├── e.txt │ │ │ ├── in_V9_C16_S19_dag.txt │ │ │ ├── main.c │ │ │ └── obj │ │ │ │ └── Debug │ │ │ │ ├── Dag.o │ │ │ │ ├── Edge.o │ │ │ │ ├── ST.o │ │ │ │ └── main.o │ │ └── adjacency matrix │ │ │ ├── DAG.c │ │ │ ├── Dag.h │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── a.txt │ │ │ ├── adjacency matrix.cbp │ │ │ ├── adjacency matrix.depend │ │ │ ├── adjacency matrix.layout │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── adjacency matrix.exe │ │ │ ├── grafo.txt │ │ │ ├── grafo1.txt │ │ │ ├── in_V9_C16_S19_dag.txt │ │ │ ├── main.c │ │ │ └── obj │ │ │ └── Debug │ │ │ ├── Dag.o │ │ │ ├── Edge.o │ │ │ ├── ST.o │ │ │ └── main.o │ ├── Unweighted Graphs │ │ ├── Adjacency List │ │ │ ├── Graph.c │ │ │ ├── Graph.h │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── STold.c │ │ │ ├── STold.h │ │ │ ├── a.txt │ │ │ ├── adjacency list.cbp │ │ │ ├── adjacency list.depend │ │ │ ├── adjacency list.layout │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── adjacency list.exe │ │ │ ├── inC15S28.txt │ │ │ ├── inC15S38.txt │ │ │ ├── in_V6_C15_S22_dfs.txt │ │ │ ├── in_V6_C15_S6_dfs.txt │ │ │ ├── in_V8_C15_S41_dfs.txt │ │ │ ├── in_V8_C16_S36_scc.txt │ │ │ ├── main.c │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ ├── Edge.o │ │ │ │ │ ├── Graph.o │ │ │ │ │ ├── ST.o │ │ │ │ │ └── main.o │ │ │ ├── out.txt │ │ │ └── x.txt │ │ └── Adjacency Matrix │ │ │ ├── Graph.c │ │ │ ├── Graph.h │ │ │ ├── Graph.o │ │ │ ├── Queue.c │ │ │ ├── Queue.h │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── adjacency matrix.cbp │ │ │ ├── adjacency matrix.depend │ │ │ ├── adjacency matrix.layout │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── adjacency matrix.exe │ │ │ ├── inC15S28.txt │ │ │ ├── main.c │ │ │ └── obj │ │ │ └── Debug │ │ │ ├── Edge.o │ │ │ ├── Graph.o │ │ │ ├── Queue.o │ │ │ ├── ST.o │ │ │ └── main.o │ └── Weighted Graphs │ │ ├── Adjacency List │ │ ├── Graph.c │ │ ├── Graph.h │ │ ├── Graph.o │ │ ├── PQ.c │ │ ├── PQ.h │ │ ├── ST.c │ │ ├── ST.h │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── weighted graph adjacency list.exe │ │ ├── inC15S30.txt │ │ ├── inC15S40.txt │ │ ├── in_V5_C18_S24_sp.txt │ │ ├── in_V5_C18_S35_sp.txt │ │ ├── in_V5_C18_S9_sp.txt │ │ ├── main.c │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── Edge.o │ │ │ │ ├── Graph.o │ │ │ │ ├── Item.o │ │ │ │ ├── PQ.o │ │ │ │ ├── ST.o │ │ │ │ ├── main.o │ │ │ │ └── pqueue.o │ │ ├── weighted graph adjacency list.cbp │ │ ├── weighted graph adjacency list.depend │ │ └── weighted graph adjacency list.layout │ │ └── Adjacency Matrix │ │ ├── Graph.c │ │ ├── Graph.h │ │ ├── Graph.o │ │ ├── Queue.c │ │ ├── Queue.h │ │ ├── ST.c │ │ ├── ST.h │ │ ├── bin │ │ └── Debug │ │ │ └── weighted graph adjacency matrix.exe │ │ ├── inC15S30.txt │ │ ├── main.c │ │ ├── obj │ │ └── Debug │ │ │ ├── Edge.o │ │ │ ├── Graph.o │ │ │ ├── Queue.o │ │ │ ├── ST.o │ │ │ ├── main.o │ │ │ └── ts.o │ │ ├── prova.txt │ │ ├── s.txt │ │ ├── weighted graph adjacency matrix.cbp │ │ ├── weighted graph adjacency matrix.depend │ │ └── weighted graph adjacency matrix.layout └── Undirected Graphs │ ├── Unweighted Graphs │ ├── Adjacency List │ │ ├── Graph.c │ │ ├── Graph.h │ │ ├── Graph.o │ │ ├── ST.c │ │ ├── ST.h │ │ ├── adjacency list.cbp │ │ ├── adjacency list.depend │ │ ├── adjacency list.layout │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── adjacency list.exe │ │ ├── inC15S27.txt │ │ ├── inC15S37.txt │ │ ├── in_V13_C16_S10_pda.txt │ │ ├── in_V13_C16_S4_cc.txt │ │ ├── main.c │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── Edge.o │ │ │ │ ├── Graph.o │ │ │ │ ├── ST.o │ │ │ │ └── main.o │ │ └── out.txt │ └── Adjacency Matrix │ │ ├── Adjacency Matrix.cbp │ │ ├── Adjacency Matrix.depend │ │ ├── Adjacency Matrix.layout │ │ ├── Graph.c │ │ ├── Graph.h │ │ ├── Queue.c │ │ ├── Queue.h │ │ ├── ST.c │ │ ├── ST.h │ │ ├── bin │ │ └── Debug │ │ │ └── Adjacency Matrix.exe │ │ ├── inC15S27.txt │ │ ├── inC15S54.txt │ │ ├── inC15S61.txt │ │ ├── in_V8_C15_S50_bfs.txt │ │ ├── main.c │ │ └── obj │ │ └── Debug │ │ ├── Edge.o │ │ ├── Graph.o │ │ ├── Queue.o │ │ ├── ST.o │ │ └── main.o │ └── Weighted Graphs │ ├── Adjacency List │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── UF.c │ ├── UF.h │ ├── bin │ │ └── Debug │ │ │ └── weighted graph adjacency list.exe │ ├── inC15S39.txt │ ├── inC18S19.txt │ ├── in_V5_C14_S32_List.txt │ ├── in_V9_C17_S20.txt │ ├── main.c │ ├── obj │ │ └── Debug │ │ │ ├── Edge.o │ │ │ ├── Graph.o │ │ │ ├── ST.o │ │ │ ├── UF.o │ │ │ └── main.o │ ├── weighted graph adjacency list.cbp │ ├── weighted graph adjacency list.depend │ └── weighted graph adjacency list.layout │ └── Adjacency Matrix │ ├── Graph.c │ ├── Graph.h │ ├── ST.c │ ├── ST.h │ ├── UF.c │ ├── UF.h │ ├── bin │ └── Debug │ │ └── weighted graph adjacency matrix.exe │ ├── inC15S29.txt │ ├── inC18S19.txt │ ├── main.c │ ├── obj │ └── Debug │ │ ├── Edge.o │ │ ├── Graph.o │ │ ├── ST.o │ │ ├── UF.o │ │ └── main.o │ ├── weighted graph adjacency matrix.cbp │ ├── weighted graph adjacency matrix.depend │ └── weighted graph adjacency matrix.layout ├── Hash Tables ├── hash con linear chaining │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── bin │ │ └── Debug │ │ │ └── symbol table.exe │ ├── hash table.cbp │ ├── hash table.depend │ ├── hash table.layout │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── hash con open addressing e double hashing │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── bin │ │ └── Debug │ │ │ └── symbol table.exe │ ├── hash table.cbp │ ├── hash table.depend │ ├── hash table.layout │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── hash con open addressing e linear probing │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── bin │ │ ├── Debug │ │ │ └── symbol table.exe │ │ └── Release │ │ │ └── symbol table.exe │ ├── hash table.cbp │ ├── hash table.depend │ ├── hash table.layout │ ├── main.c │ └── obj │ │ ├── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o │ │ └── Release │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o └── hash con open addressing e quadratic probing │ ├── Item.c │ ├── Item.h │ ├── ST.c │ ├── ST.h │ ├── bin │ └── Debug │ │ └── symbol table.exe │ ├── hash table.cbp │ ├── hash table.depend │ ├── hash table.layout │ ├── main.c │ └── obj │ └── Debug │ ├── Item.o │ ├── ST.o │ └── main.o ├── Heaps ├── Heap.c ├── Heap.h ├── Item.c ├── Item.h ├── bin │ └── Debug │ │ └── heapsort.exe ├── heapsort.cbp ├── heapsort.depend ├── heapsort.layout ├── main.c └── obj │ └── Debug │ ├── Heap.o │ ├── Item.o │ ├── PQUEUE.o │ ├── main (2).o │ └── main.o ├── Laboratori ├── Lab01.pdf ├── Lab02.pdf ├── Lab03.pdf ├── Lab04.pdf ├── Lab05.pdf ├── Lab06.pdf ├── Lab07.pdf ├── Lab08.pdf ├── Lab09.pdf ├── S293369_1 │ ├── L01 │ │ ├── E01 │ │ │ └── E01.c │ │ ├── E02 │ │ │ ├── E02.c │ │ │ └── corse.txt │ │ ├── E03 │ │ │ └── E03.c │ │ ├── E04 │ │ │ └── E04.c │ │ ├── Lab01.pdf │ │ ├── commento completo Lab01.pdf │ │ ├── commento parziale Lab01.pdf │ │ ├── corse.txt │ │ ├── soluzioni Lab01.zip │ │ ├── soluzioni parziali Lab01.zip │ │ └── soluzioni parziali Lab01 │ │ │ └── E2 │ │ │ ├── corse.txt │ │ │ └── e2.c │ ├── L02 │ │ ├── E01 │ │ │ └── E01.c │ │ ├── E02 │ │ │ ├── E02.c │ │ │ └── mat.txt │ │ ├── E03.c │ │ ├── Lab02.pdf │ │ ├── commento completo Lab02.pdf │ │ ├── commento parziale Lab02.pdf │ │ ├── mat.txt │ │ └── soluzioni Lab02.zip │ └── L03 │ │ ├── E01 │ │ └── E01.c │ │ ├── E02 │ │ ├── E02.c │ │ └── brani.txt │ │ ├── Lab03.pdf │ │ ├── brani.txt │ │ ├── commento completo Lab03.pdf │ │ ├── commento parziale Lab03.pdf │ │ └── soluzioni Lab03.zip ├── s293369_3 │ ├── L07 │ │ ├── E01 │ │ │ ├── equipArray.c │ │ │ ├── equipArray.h │ │ │ ├── inv.c │ │ │ ├── inv.h │ │ │ ├── invArray.c │ │ │ ├── invArray.h │ │ │ ├── inventario.txt │ │ │ ├── main.c │ │ │ ├── pg.c │ │ │ ├── pg.h │ │ │ ├── pg.txt │ │ │ ├── pgList.c │ │ │ └── pgList.h │ │ ├── E02 │ │ │ └── E02.c │ │ ├── Lab07.pdf │ │ ├── commento parziale Lab07.pdf │ │ └── input files (aggiornato).zip │ ├── L08 │ │ ├── E01 │ │ │ ├── Graph.c │ │ │ ├── Graph.h │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── input.txt │ │ │ ├── listaadj.c │ │ │ ├── listaadj.h │ │ │ └── main.c │ │ ├── E03 │ │ │ ├── datetime.c │ │ │ ├── datetime.h │ │ │ ├── main.c │ │ │ ├── quotazioni.c │ │ │ ├── quotazioni.h │ │ │ ├── titles.c │ │ │ └── titles.h │ │ ├── Lab8.pdf │ │ ├── commento parziale Lab08.pdf │ │ └── input files.zip │ └── L09 │ │ ├── E01 │ │ ├── Graph.c │ │ ├── Graph.h │ │ ├── ST.c │ │ ├── ST.h │ │ └── main.c │ │ ├── Lab9.pdf │ │ └── input files.zip ├── s296525_1 │ ├── L01 │ │ ├── E01 │ │ │ └── main.c │ │ ├── E02 │ │ │ ├── corse.txt │ │ │ └── main.c │ │ ├── E03 │ │ │ ├── corse.txt │ │ │ └── main.c │ │ └── E04 │ │ │ ├── corse.txt │ │ │ └── main.c │ ├── L02 │ │ ├── E01 │ │ │ ├── main.c │ │ │ └── main.exe │ │ ├── E02 │ │ │ ├── main.c │ │ │ └── mat.txt │ │ └── E03 │ │ │ ├── corse.txt │ │ │ ├── corse2.txt │ │ │ └── main.c │ └── L03 │ │ ├── E01 │ │ └── main.c │ │ └── E02 │ │ ├── brani.txt │ │ ├── main.c │ │ ├── main.exe │ │ └── output │ │ └── main.exe ├── s296525_2 │ ├── L04 │ │ ├── E01 │ │ │ ├── grafo.txt │ │ │ ├── main.c │ │ │ └── main.exe │ │ ├── E02 │ │ │ ├── anag1.txt │ │ │ ├── anag2.txt │ │ │ └── main.c │ │ └── E03 │ │ │ ├── easy_test_set.txt │ │ │ ├── easy_test_set_result.txt │ │ │ ├── hard_test_set.txt │ │ │ ├── hard_test_set_result.txt │ │ │ ├── main.c │ │ │ ├── main.exe │ │ │ ├── very_easy_test_set.txt │ │ │ └── very_very_easy_test_set.txt │ ├── L05 │ │ ├── E01 │ │ │ ├── att.txt │ │ │ ├── att1.txt │ │ │ ├── main.c │ │ │ └── main.exe │ │ └── E02 │ │ │ ├── board.txt │ │ │ ├── main.c │ │ │ ├── main.exe │ │ │ └── tiles.txt │ └── L06 │ │ ├── E02 │ │ ├── easy_test_set.txt │ │ ├── hard_test_set.txt │ │ ├── main.c │ │ ├── main.exe │ │ ├── test_set_hard_result.txt │ │ ├── very_easy_test_set.txt │ │ └── very_very_easy_test_set.txt │ │ └── E03 │ │ ├── inv.c │ │ ├── inv.h │ │ ├── inventario.txt │ │ ├── main.c │ │ ├── main.exe │ │ ├── pg.c │ │ ├── pg.h │ │ ├── pg.txt │ │ ├── stats.c │ │ └── stats.h ├── s296525_3 │ ├── L07 │ │ ├── E01 │ │ │ ├── equipArray.c │ │ │ ├── equipArray.exe │ │ │ ├── equipArray.h │ │ │ ├── gdr.c │ │ │ ├── gdr.exe │ │ │ ├── inv.c │ │ │ ├── inv.h │ │ │ ├── invArray.c │ │ │ ├── invArray.h │ │ │ ├── inventario.txt │ │ │ ├── pg.c │ │ │ ├── pg.exe │ │ │ ├── pg.h │ │ │ ├── pg.txt │ │ │ ├── pgList.c │ │ │ ├── pgList.exe │ │ │ └── pgList.h │ │ └── E02 │ │ │ ├── elementi.txt │ │ │ └── testset_e_risultati.txt │ ├── L08 │ │ ├── E01 │ │ │ ├── elementi.txt │ │ │ └── testset_e_risultati.txt │ │ ├── E02 │ │ │ ├── build │ │ │ │ └── Debug │ │ │ │ │ ├── Item.o │ │ │ │ │ └── main.o │ │ │ └── grafo.txt │ │ └── E03 │ │ │ ├── F1.txt │ │ │ ├── F2.txt │ │ │ └── F3.txt │ └── L09 │ │ └── E01 │ │ ├── grafo1.txt │ │ ├── grafo2.txt │ │ ├── grafo3.txt │ │ └── grafo4.txt └── s2993369_2 │ ├── L01 │ ├── E01 │ │ ├── E01.c │ │ ├── download (1).png │ │ ├── download (2).png │ │ ├── download.png │ │ ├── images (1).png │ │ ├── images.jpeg │ │ ├── images.png │ │ ├── input-1-1-1536x1341.png │ │ ├── input-2-1-1536x1341.png │ │ ├── input0.txt │ │ ├── input1.txt │ │ ├── input10.txt │ │ ├── input11.txt │ │ ├── input2.txt │ │ ├── input3.txt │ │ ├── input4.txt │ │ ├── input5.txt │ │ ├── input6.txt │ │ ├── input7.txt │ │ ├── input8.txt │ │ ├── input9.txt │ │ ├── vertex-cover.png │ │ └── vertexcover.png │ ├── E02 │ │ └── E02.c │ ├── E03 │ │ └── E03.c │ ├── Lab4.pdf │ ├── commento completo Lab04.pdf │ ├── commento parziale Lab04.pdf │ ├── input files.zip │ └── soluzioni Lab04.zip │ ├── L02 │ ├── E01 │ │ └── e01.c │ ├── E02.c │ ├── Lab5.pdf │ ├── commento completo Lab05.pdf │ ├── commento parziale Lab05.pdf │ ├── input files.zip │ └── soluzioni Lab05.zip │ └── L03 │ ├── DynProg_extra.pdf │ ├── E01 │ └── E01.c │ ├── E02 │ └── E02.c │ ├── E03 │ ├── inventario.c │ ├── inventario.h │ ├── main.c │ ├── personaggi.c │ └── personaggi.h │ ├── Lab06.pdf │ ├── commento completo Lab06.pdf │ ├── commento parziale Lab06.pdf │ ├── input files.zip │ └── soluzioni Lab06.zip ├── Liste ├── 2.3.1 listastringhe │ ├── listastringhe.c │ └── stringhe.txt ├── 2.3.2 splitstringhe │ └── splitstringhe.c ├── 2.3.3 listapunti │ └── listapunti.c ├── 2.3.4 completalista │ └── completalista.c ├── esempio1.c └── ricorsioneEliste │ ├── equilibrio.c │ ├── lista_completamento.c │ ├── lista_stringhe.c │ └── slides.pdf ├── Priority Queues ├── PQIndex │ ├── Item.c │ ├── Item.h │ ├── Item.o │ ├── PQ.c │ ├── PQ.h │ ├── PQIndex.cbp │ ├── PQIndex.depend │ ├── PQIndex.layout │ ├── ST.c │ ├── ST.h │ ├── bin │ │ ├── Debug │ │ │ └── PQIndex.exe │ │ └── Release │ │ │ └── PQIndex.exe │ ├── main.c │ └── obj │ │ ├── Debug │ │ ├── Item.o │ │ ├── PQ.o │ │ ├── ST.o │ │ └── main.o │ │ └── Release │ │ ├── Item.o │ │ ├── PQ.o │ │ ├── ST.o │ │ └── main.o └── PQItem │ ├── Item.c │ ├── Item.h │ ├── PQ Item.cbp │ ├── PQ Item.depend │ ├── PQ Item.layout │ ├── PQ.c │ ├── PQ.h │ ├── bin │ └── Debug │ │ └── PQ Item.exe │ ├── main.c │ └── obj │ └── Debug │ ├── Item.o │ ├── PQ.o │ └── main.o ├── README.md ├── Symbol Tables ├── ST direct access table │ ├── Item.c │ ├── Item.h │ ├── ST direct access table.cbp │ ├── ST direct access table.depend │ ├── ST direct access table.layout │ ├── ST.c │ ├── ST.h │ ├── bin │ │ └── Debug │ │ │ └── ST direct access table.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── ST sorted array │ ├── Item.c │ ├── Item.h │ ├── ST sorted array.cbp │ ├── ST sorted array.depend │ ├── ST sorted array.layout │ ├── ST.c │ ├── ST.h │ ├── bin │ │ └── Debug │ │ │ └── ST sorted array.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── ST sorted list │ ├── Item.c │ ├── Item.h │ ├── ST sorted list.cbp │ ├── ST sorted list.depend │ ├── ST sorted list.layout │ ├── ST.c │ ├── ST.h │ ├── ST.o │ ├── bin │ │ └── Debug │ │ │ └── ST sorted list.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── ST unsorted array │ ├── Item.c │ ├── Item.h │ ├── ST unsorted array.cbp │ ├── ST unsorted array.depend │ ├── ST unsorted array.layout │ ├── ST.c │ ├── ST.h │ ├── bin │ │ └── Debug │ │ │ └── ST unsorted array.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── ST unsorted list │ ├── Item.c │ ├── Item.h │ ├── ST unsorted list.cbp │ ├── ST unsorted list.depend │ ├── ST unsorted list.layout │ ├── ST.c │ ├── ST.h │ ├── ST.o │ ├── bin │ │ └── Debug │ │ │ └── ST unsorted list.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o └── wq.txt ├── Tree ├── BST │ ├── BST.c │ ├── BST.cbp │ ├── BST.depend │ ├── BST.h │ ├── BST.layout │ ├── Item.c │ ├── Item.h │ ├── bin │ │ └── Debug │ │ │ └── BST.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── BST.o │ │ ├── Item.o │ │ ├── ST.o │ │ └── main.o ├── IBST │ ├── IBST.c │ ├── IBST.cbp │ ├── IBST.depend │ ├── IBST.h │ ├── IBST.layout │ ├── Item.c │ ├── Item.h │ ├── bin │ │ └── Debug │ │ │ └── IBST.exe │ ├── main.c │ └── obj │ │ └── Debug │ │ ├── IBST.o │ │ ├── Item.o │ │ └── main.o └── w.txt ├── arraywithmalloc.c ├── asdslide.pdf ├── complessita ├── Complessità.pdf └── tutte-le-complessita-fondamentali-apa.pdf ├── laboratoriAPA ├── AP1920_RegoleLab.pdf ├── Lab00 │ └── Lab00.pdf ├── Lab01 │ ├── Commento completo Lab01.pdf │ ├── Commento parziale Lab01.pdf │ ├── Lab01.pdf │ ├── soluzioni Lab01.zip │ └── soluzioni parziali Lab01.zip ├── Lab02 │ ├── Commento completo Lab02.pdf │ ├── Commento parziale Lab02.pdf │ ├── Lab02 con precisazione su esercizio 2.pdf │ ├── Lab02.pdf │ ├── soluzioni Lab02.zip │ └── soluzioni parziali Lab02.zip ├── Lab03 │ ├── Commento completo Lab03.pdf │ ├── Lab03.pdf │ └── soluzioni Lab03.zip ├── Lab04 │ ├── Commento parziale Lab04.pdf │ ├── Lab04.pdf │ ├── soluzioni Lab04.zip │ └── soluzioni parziali Lab04.zip ├── Lab05 │ ├── Commento completo Lab05.pdf │ ├── Lab05.pdf │ ├── brani.txt │ ├── mat.txt │ └── soluzioni Lab05.zip ├── Lab06 │ ├── Commento completo Lab06.pdf │ ├── Lab06.pdf │ ├── grafo.txt │ └── soluzioni Lab06.zip ├── Lab07 │ ├── Commento completo Lab07.pdf │ ├── Commento parziale Lab07.pdf │ ├── Lab07.pdf │ ├── e1_easy_test_set.txt │ ├── e1_easy_test_set_result.txt │ ├── e1_hard_test_set.txt │ ├── e1_hard_test_set_result.txt │ ├── e2_test_set.txt │ ├── e2_test_set_result.txt │ ├── inventario.txt │ ├── pg.txt │ ├── soluzioni Lab07.zip │ └── soluzioni parziali Lab07.zip ├── Lab08 │ ├── Commento completo Lab08.pdf │ ├── Commento parziale Lab08.pdf │ ├── Lab08.pdf │ ├── att.txt │ ├── board.txt │ ├── inventario.txt │ ├── pg.txt │ ├── soluzioni Lab08.zip │ ├── soluzioni parziali Lab08.zip │ └── tiles.txt ├── Lab09 │ ├── Commento completo Lab09.pdf │ ├── E2incompleto.zip │ ├── Lab09 es 0 con correzioni e precisazioni.pdf │ ├── Lab09.pdf │ └── soluzioni Lab09.zip ├── Lab10 │ ├── Commento completo Lab10.pdf │ ├── Commento parziale Lab10.pdf │ ├── Lab10.pdf │ ├── input files (aggiornato 02_01_2020).zip │ ├── soluzioni Lab10.zip │ └── soluzioni parziali Lab10.zip ├── Lab11 │ ├── Commento completo Lab11.pdf │ ├── Lab11.pdf │ ├── input files (aggiornato 10_01_2020).zip │ └── soluzioni Lab11.zip ├── Lab12 │ ├── Commento completo Lab12.pdf │ ├── Lab12.pdf │ ├── input files.zip │ └── soluzioni Lab12.zip └── Tracce_esercizi.pdf ├── orale └── programmazione │ ├── anagrammidistinti.c │ ├── createBIGstring_fromarrayofstring.c │ ├── createarray_odd_even.c │ ├── createlist3_fromnonorderlist.c │ ├── createlistfromarray.c │ ├── createmediaarray.c │ ├── deleteelementinevenpositionfromlist.c │ ├── deleteoddvaluefromlist.c │ ├── deleteval_fromlist.c │ ├── disposizionisemplici_gruppi3.c │ ├── disprip_pruningandcheck.c │ ├── fromval_createlistOddEven.c │ ├── invertilista.c │ ├── listadiliste.c │ ├── listwith_val_str_node.c │ ├── matricesparse.c │ ├── permutazioni_numeri1a9.c │ ├── printstringfromchar.c │ ├── ripiegalistacheck.c │ ├── seperatestringwithdel.c │ └── terzalista_noduplicati.c ├── ordinamento ├── RecursiveSort │ ├── Item.c │ ├── Item.h │ ├── RecursiveSorting.c │ ├── RecursiveSorting.h │ └── main.c ├── mergesort.c ├── quicksort.c └── sortarraywithptr.c ├── partizionamentoEadt ├── 3.1.1 catalogo │ ├── catalogo.c │ └── catalogo.txt ├── 3.1.2 catalogoesteso │ ├── catalogo.txt │ └── catalogo_esteso.c ├── 3.1.3 atleti │ ├── atleti.c │ └── atleti.txt ├── 3.1.4 atletiliste │ ├── atleti.txt │ ├── atletilisteVers1.c │ └── atletilisteVers2.c ├── 3.1.5 atletipiano │ ├── atleti.txt │ ├── atletipiano.c │ └── esercizi.txt ├── 3.2.1 atletipianomultifile │ ├── A0001.txt │ ├── atleti.c │ ├── atleti.h │ ├── atleti.txt │ ├── esercizi.c │ ├── esercizi.h │ ├── esercizi.txt │ └── main.c ├── 3.2.2 ricettariomultifile │ ├── ingrediente.c │ ├── ingrediente.h │ ├── ingredienti.txt │ └── main.c ├── 3.2.3 ricettarioestesomultifile │ ├── ingredienti.c │ ├── ingredienti.h │ ├── ingredienti.txt │ ├── main.c │ ├── ricette.c │ ├── ricette.h │ └── ricette.txt ├── 3.3.1 atletipianoADT │ ├── atl.c │ ├── atl.h │ ├── atlList.c │ ├── atlList.h │ ├── atleti.txt │ ├── catArray.c │ ├── catArray.h │ ├── es.c │ ├── es.h │ ├── esArray.c │ ├── esArray.h │ ├── esList.c │ ├── esList.h │ ├── esercizi.txt │ └── main.c ├── moli.c ├── skilift │ ├── BST.c │ ├── BST.h │ ├── ST.c │ ├── ST.h │ ├── main.c │ ├── skier.c │ ├── skier.h │ ├── skilift.c │ └── skilift.h ├── slides.pdf ├── voli-adt │ └── voli-adt │ │ ├── aeroporti.c │ │ ├── aeroporti.h │ │ ├── main.c │ │ ├── voli.c │ │ ├── voli.c~ │ │ └── voli.h └── voli │ └── voli │ ├── v1 │ ├── aeroporti.c │ ├── aeroporti.h │ ├── aeroporti.txt │ ├── main.c │ ├── voli.c │ ├── voli.h │ └── voli.txt │ ├── v2 │ ├── aeroporti.c │ ├── aeroporti.h │ ├── aeroporti.txt │ ├── main.c │ ├── voli.c │ ├── voli.h │ └── voli.txt │ └── v3 │ ├── aeroporti.c │ ├── aeroporti.h │ ├── aeroporti.txt │ ├── main.c │ ├── voli.c │ ├── voli.h │ └── voli.txt ├── programmazione dinamica & greedy ├── 01activityselection │ ├── Item.c │ ├── Item.h │ └── main.c ├── 01assembly_line.c ├── 02changemachine.c ├── 02matrmult.c ├── 03fractionalknapsack │ ├── Item.c │ ├── Item.h │ └── main.c ├── 03matr_chain_mult.c ├── 04LIS.c ├── 04huffman │ ├── Item.c │ ├── Item.h │ ├── PQ.c │ ├── PQ.h │ ├── Tree.c │ ├── Tree.h │ └── main.c ├── 05LCS.c ├── 06knapsack │ ├── Item.c │ ├── Item.h │ └── main.c ├── 07fibonacciM.c ├── 08hofstadterM.c ├── 09knapsackM │ ├── Item.c │ ├── Item.h │ └── main.c ├── Codice C per 05 La programmazione dinamica │ ├── 01assembly_line.c │ ├── 02matrmult.c │ ├── 03matr_chain_mult.c │ ├── 04LIS.c │ ├── 05LCS.c │ ├── 06knapsack │ │ ├── Item.c │ │ ├── Item.h │ │ └── main.c │ ├── 07fibonacciM.c │ ├── 08hofstadterM.c │ └── 09knapsackM │ │ ├── Item.c │ │ ├── Item.h │ │ └── main.c ├── Codice C per 06 Il paradigma greedy │ ├── 01activityselection │ │ ├── Item.c │ │ ├── Item.h │ │ └── main.c │ ├── 02changemachine.c │ └── 03fractionalknapsack │ │ ├── Item.c │ │ ├── Item.h │ │ └── main.c ├── equilibrio │ ├── equilibrio_abinc.c │ ├── equilibrio_aincbesc.c │ └── slides.pdf └── fibonaccimemorization.c ├── prototipi ├── Elenco funzioni C.pdf └── prototipi.txt ├── puntatori.c ├── ricorsione ├── 2_2_1_Fattoriale.c ├── 2_2_2_fibonacci.c ├── 2_2_3_MCD.c ├── 2_2_4_Max.c ├── 2_2_5_Moltiplicazione.c ├── 2_2_6_Determinante.c ├── 2_3_1_RicercaBinaria.c ├── 2_3_2_MergeSort.c ├── 2_3_3_Liste.c ├── 2_3_4_VisiteAlberi.c ├── 2_4_1_Hanoi.c ├── 2_4_2_Sierpinski.c ├── 2_5_ChiamataFunzioni.c ├── 2_5_FattorialeTR.c ├── 2_6_Duali.c ├── Triangoloenumeribinari │ ├── sameOnes.c │ ├── slides.pdf │ └── triangolo.c ├── binarysearchconstringhe.c ├── countdigit.c ├── fattoriale.c ├── fibonacci.c ├── palindromo.c ├── potenzaconnumeriinteri.c ├── powinternumb.c ├── sommaconsecutivi.c └── sumdigit.c └── temidiesame ├── 12punti ├── 2014 │ ├── Appello 1 │ │ ├── 06Febbraio2014es1-12pt-versione2.c │ │ ├── 06Febbraio2014es1-12pt.c │ │ ├── 06Febbraio2014es2-12pt-versione2.c │ │ ├── 06Febbraio2014es2-12pt.c │ │ └── 06Febbraio2014es3-12pt.c │ ├── Appello 2 │ │ ├── 24Febbraio2014es1-12pt.c │ │ ├── 24Febbraio2014es2-12pt.c │ │ ├── 24Febbraio2014es2-ver2-12pt.c │ │ ├── 24Febbraio2014es3-12pt-versione2.c │ │ ├── 24Febbraio2014es3-12pt.c │ │ ├── es1_rotazione.c │ │ ├── es2_matricesparca.c │ │ └── es3_disprip.c │ ├── Appello 3 │ │ ├── 27Giugno2014es1-12pt.c │ │ ├── 27Giugno2014es2-12pt-versione2.c │ │ ├── 27Giugno2014es2-12pt-versione3.c │ │ ├── 27Giugno2014es2-12pt.c │ │ ├── 27Giugno2014es3-12pt-versione2.c │ │ ├── 27Giugno2014es3-12pt.c │ │ ├── es1_vet2invet1.c │ │ └── es3_menu.c │ └── Appello 4 │ │ ├── 03Settembre2014es1-12pt.c │ │ ├── 03Settembre2014es2-12pt-versione2.c │ │ ├── 03Settembre2014es2-12pt-versione3.c │ │ ├── 03Settembre2014es2-12pt.c │ │ ├── 03Settembre2014es3-12pt.c │ │ ├── es1_searchstr.c │ │ ├── es2_substringwithstrtok.c │ │ └── es3_leftchildandrightsibling.c ├── 2015 │ ├── Appello 1 │ │ ├── 02Febbario2015es1-12pt.c │ │ ├── 02Febbario2015es2-12pt.c │ │ ├── 02Febbario2015es3-12pt.c │ │ ├── 02Febbraio2015es1-12pt-versione2.c │ │ ├── 02Febbraio2015es3-12pt-versione2.c │ │ ├── es1_eraseduplicate.c │ │ ├── es2_alberodigradofissatoN.c │ │ └── es3_ax1.c │ ├── Appello 2 │ │ ├── 23Febbario2015es3-12ptv2.c │ │ ├── 23Febbraio2015es1-12pt.c │ │ ├── 23Febbraio2015es2-12pt.c │ │ ├── 23Febbraio2015es3-12pt.c │ │ ├── es1_invertsequence.c │ │ ├── es2_printpath.c │ │ └── es3_password.c │ ├── Appello 3 │ │ ├── 16Giugno2015es1-12pt-versione2.c │ │ ├── 16Giugno2015es1-12pt.c │ │ ├── 16Giugno2015es2-12pt.c │ │ ├── 16Giugno2015es3-12pt.c │ │ ├── es2_duplicate.c │ │ ├── es3_prodottieproduttori.c │ │ ├── skilift │ │ │ ├── BST.c │ │ │ ├── BST.h │ │ │ ├── ST.h │ │ │ ├── altrerisoluzioni.txt │ │ │ ├── main.c │ │ │ ├── skier.c │ │ │ ├── skier.h │ │ │ ├── skilift.c │ │ │ └── skilift.h │ │ └── slides.pdf │ └── Appello 4 │ │ ├── 02Settembre2015es1-12pt.c │ │ ├── 02Settembre2015es2-12pt.c │ │ ├── 02Settembre2015es3-12pt.c │ │ ├── es1_scacchiera.c │ │ └── es2_alberiisomorfi.c ├── 2016 │ ├── Appello 1 │ │ ├── 26Gennaio2016es1-12pt.c │ │ ├── 26Gennaio2016es2-12pt.c │ │ ├── 26Gennaio2016es3-12pt.c │ │ ├── es1_charerase.c │ │ └── es3_decomposizone.c │ ├── Appello 2 │ │ ├── 22Febbraio2016es1-12pt.c │ │ ├── 22Febbraio2016es2-12pt.c │ │ ├── 22Febbraio2016es2-12pt_easyver.c │ │ ├── 22Febbraio2016es2-12pt_iterative.c │ │ ├── 22Febbraio2016es2-12pt_wrapper.c │ │ ├── 22Febbraio2016es3-12pt.c │ │ ├── es1_area.c │ │ ├── es2_splitlitsta.c │ │ └── es3_lampadine.c │ ├── Appello 3 │ │ ├── 14Giugno2016es1-12pt.c │ │ ├── 14Giugno2016es2-12pt.c │ │ ├── 14Giugno2016es2-12pt_algebra_puntatori.c │ │ ├── 14Giugno2016es3-12pt.c │ │ ├── 14Giugno2016es3-12pt_ver2.c │ │ ├── es2_ciao.c │ │ └── es3_set.c │ └── Appello 4 │ │ ├── 09Settembre2016es1-12pt.c │ │ ├── 09Settembre2016es1v2-12pt.c │ │ ├── 09Settembre2016es2-12pt.c │ │ ├── 09Settembre2016es2-12pt_ver2.c │ │ ├── 09Settembre2016es3-12pt.c │ │ ├── 09Settembre2016es3_bug-12pt.c │ │ ├── es1_submat.c │ │ ├── es2_bst.c │ │ └── es3_libri.c ├── 2017 │ ├── Appello 1 │ │ ├── 04Febbraio2017es1-12pt.c │ │ ├── 04Febbraio2017es1_ver2-12pt.c │ │ ├── 04Febbraio2017es2-12pt.c │ │ ├── 04Febbraio2017es3-12pt.c │ │ ├── 04Febbraio2017es3_ver2-12pt.c │ │ ├── es1_sumcornici.c │ │ ├── es2_mirror.c │ │ └── es3_whitematrix.c │ ├── Appello 2 │ │ ├── 22Febbraio2017es1-12pt.c │ │ ├── 22Febbraio2017es2-12pt.c │ │ ├── 22Febbraio2017es2-12ptv2.c │ │ ├── 22Febbraio2017es3-12pt.c │ │ ├── es1_mat.c │ │ └── es3_incompatibili.c │ ├── Appello 3 │ │ ├── 26Giugno2017es1-12pt.c │ │ ├── 26Giugno2017es2-12pt.c │ │ ├── 26Giugno2017es3-12pt.c │ │ ├── es2_bst2list.c │ │ └── es3_sumcardminmaxmat.c │ └── Appello 4 │ │ ├── 18Settembre2017es1-12pt.c │ │ ├── 18Settembre2017es1-12ptv2.c │ │ ├── 18Settembre2017es2-12pt.c │ │ ├── 18Settembre2017es2_ver_powerset-12pt.c │ │ ├── 18Settembre2017es3-12pt.c │ │ ├── es1_esrozzoquandoseinelpanico.c │ │ ├── es1_sumsubmat.c │ │ └── es3.c ├── 2018 │ ├── Appello 1 │ │ ├── 29Gennaio2018es1-12pt.c │ │ ├── 29Gennaio2018es2-12pt.c │ │ ├── 29Gennaio2018es3-12pt-versione2.c │ │ ├── 29Gennaio2018es3-12pt-versione3.c │ │ ├── 29Gennaio2018es3-12pt.c │ │ ├── es1_vetsubsequenzamax.c │ │ ├── es2_addnode.c │ │ └── es3_intervsel.c │ ├── Appello 2 │ │ ├── 13Febbraio2018es1-12pt.c │ │ ├── 13Febbraio2018es2-12pt_ver2.c │ │ ├── 13Febbraio2018es3-12pt.c │ │ ├── es1_printsubsquaremat.c │ │ ├── es2_SubtreeofAnotherTree.c │ │ ├── es3_moliEr.c │ │ └── esercizio 2 │ │ │ ├── bst.c │ │ │ ├── bst.h │ │ │ └── main.c │ ├── Appello 3 │ │ ├── 21Giugno2018e2-12pt.c │ │ ├── 21Giugno2018es1-12pt.c │ │ ├── 21Giugno2018es3-12pt.c │ │ ├── 21Giugno2018es3-12pt_ver2.c │ │ ├── es1_countsubstringwith2vocali.c │ │ ├── es2_diameterTree.c │ │ ├── es3_LIS_powerset.c │ │ └── es3_lisDP.c │ └── Appello 4 │ │ ├── 13Settemre2018es1-12pt.c │ │ ├── 13Settemre2018es2-12pt.c │ │ ├── 13Settemre2018es3-12pt.c │ │ ├── 13Settemre2018es3-12pt_r.c │ │ ├── es1_salutatelacapolista.c │ │ └── es2_comprimilista.c ├── 2019 │ ├── Appello 1 │ │ ├── 31Gennaio2019es1-12pt.c │ │ ├── 31Gennaio2019es2-12pt.c │ │ ├── 31Gennaio2019es3-12pt.c │ │ ├── 31Gennaio2019es3-12pt_powerset.c │ │ ├── es1_minmaxdiff.c │ │ ├── es2_listexchange.c │ │ └── es3_conEr.c │ ├── Appello 2 │ │ ├── 22Febbraio2019es1-12pt.c │ │ ├── 22Febbraio2019es2-12pt.c │ │ ├── 22Febbraio2019es3-12pt-versione2.c │ │ ├── 22Febbraio2019es3-12pt.c │ │ ├── es2_alberodigradofissato_sumsubtree.c │ │ └── es3_senzapruning.c │ ├── Appello 3 │ │ ├── 02Luglio2019es1-12pt.c │ │ ├── 02Luglio2019es2-12pt.c │ │ ├── 02Luglio2019es2-12pt_v2.c │ │ ├── es1_mat.c │ │ ├── es2_purgelist.c │ │ ├── es2_purgelistwithmain.c │ │ └── es3_bitonicsequence.c │ └── appello4 │ │ └── es3_grafo.c ├── 2020 │ ├── 28Gennaio2020es1.c │ ├── 28Gennaio2020es2.c │ ├── 28Gennaio2020es3.c │ ├── 28gennaio2020-es3-12pt.c │ ├── appello2 │ │ ├── es1.c │ │ ├── es2_swapvallist.c │ │ └── es3.c │ ├── appello3 │ │ ├── es2_prodcart.c │ │ └── es3.c │ ├── appello4 │ │ ├── es1_summat.c │ │ └── es3_sale.c │ ├── es1_loadmat.c │ ├── es2_buildtreeInorderPostorder.c │ ├── es3_dareresto.c │ ├── es3_sale.c │ └── programmazione12punti28Gennaio2020.jpeg ├── 2021 │ ├── appello2 │ │ ├── es1.c │ │ └── es2_splitlist.c │ ├── appello3 │ │ ├── es1_amici.c │ │ ├── es2_split.c │ │ └── es3_senzapruning.c │ ├── appello4 │ │ ├── es1.c │ │ ├── es2_list.c │ │ └── es3_senzapruning.c │ └── appelo1 │ │ ├── es1_mat.c │ │ ├── es2.c │ │ └── es3_createstrfromdict.c ├── 2022 │ ├── appello1 │ │ ├── 220127_Commento.pdf │ │ ├── es2_BTisBST.c │ │ └── es3_algoritmoer.c │ ├── appello2 │ │ ├── es1_EvenMat.c │ │ ├── es2_huffman.c │ │ └── es3_amicizia.c │ ├── appello3 │ │ ├── es1_mat3dtomat2d.c │ │ ├── es2_gradoalberofissatoN.c │ │ ├── es3.c │ │ └── outes3.c │ └── appello4 │ │ ├── es1.c │ │ ├── es2_alberodigradofissatoN_contareifigli.c │ │ └── es3.c ├── 2023 │ ├── 20230207 │ │ ├── es1.c │ │ ├── es2 │ │ │ ├── T.c │ │ │ ├── T.h │ │ │ └── main.c │ │ └── es3.c │ ├── 20230221 │ │ ├── es1.c │ │ └── es2 │ │ │ ├── List.c │ │ │ ├── List.h │ │ │ └── main.c │ ├── 20230511 │ │ ├── es1.c │ │ ├── es2 │ │ │ ├── List.c │ │ │ └── main.c │ │ └── es3.c │ ├── 20230630 │ │ ├── es1.c │ │ ├── es2 │ │ │ ├── List.c │ │ │ ├── List.h │ │ │ └── main.c │ │ └── es3.c │ ├── 20230920 │ │ ├── es1.c │ │ ├── es2 │ │ │ ├── List.c │ │ │ ├── List.h │ │ │ └── main.c │ │ └── es3.c │ └── appello1 │ │ ├── es1_mat.c │ │ ├── es2 │ │ ├── T.c │ │ ├── T.h │ │ └── main.c │ │ └── es3_algoritmoer.c └── e.txt ├── 18punti ├── 2014 │ ├── 24Febbraio - Grafi regolare e cammini massimi │ │ ├── Tema esame 2014_02_24 │ │ │ ├── GRAFO.txt │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── main.c │ │ │ ├── vertice.c │ │ │ └── vertice.h │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ ├── 3Settembre - progetto di Rete │ │ ├── Tema esame 2014_09_03 │ │ │ ├── Queue.c │ │ │ ├── Queue.h │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── archi.c │ │ │ ├── archi.h │ │ │ ├── arco.c │ │ │ ├── arco.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ ├── main.c │ │ │ ├── proposta.txt │ │ │ ├── vertice.c │ │ │ └── vertice.h │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── queue.c │ │ ├── queue.h │ │ ├── st.c │ │ └── st.h │ ├── 6Febbraio - Aritmetica Verbale │ │ ├── Tema esame 2014_02_06 │ │ │ └── main.c │ │ └── main.c │ └── Tema esame 2014_06_27 │ │ ├── FIAT_modelli.txt │ │ ├── Renault_modelli.txt │ │ ├── accessori.c │ │ ├── accessori.h │ │ ├── accessori.txt │ │ ├── accessorio.c │ │ ├── accessorio.h │ │ ├── main.c │ │ ├── modelli.c │ │ ├── modelli.h │ │ ├── modello.c │ │ ├── modello.h │ │ ├── output.txt │ │ ├── produttore.c │ │ ├── produttore.h │ │ ├── produttori.c │ │ ├── produttori.h │ │ └── produttori.txt ├── 2015 │ ├── 23Febbraio - Cammino massimo con cicli │ │ ├── Tema esame 2015_02_23 │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── cammini.txt │ │ │ ├── cammino.c │ │ │ ├── cammino.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ └── main.c │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ ├── 2Febbraio - Regali di Natale │ │ ├── Tema esame 2015_02_02 │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── amico.c │ │ │ ├── amico.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ ├── main.c │ │ │ └── regali.txt │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ ├── 2Settembre - Nonogram (x) │ │ ├── Tema esame 2015_09_02 │ │ │ ├── griglia.c │ │ │ ├── griglia.h │ │ │ ├── gruppi.txt │ │ │ ├── main.c │ │ │ ├── proposta.txt │ │ │ ├── soluzione.txt │ │ │ ├── vincoli.c │ │ │ ├── vincoli.h │ │ │ ├── vincolo.c │ │ │ └── vincolo.h │ │ ├── file.txt │ │ ├── main.c │ │ └── soluzione.txt │ └── Tema esame 2015_06_16 │ │ ├── autorizzazioni.h │ │ ├── autorizzazioniSciatore.c │ │ ├── autorizzazioniSciatore.h │ │ ├── autorizzazioniSkilift.c │ │ ├── autorizzazioniSkilift.h │ │ ├── main.c │ │ ├── output.txt │ │ ├── sciatore.c │ │ ├── sciatore.h │ │ ├── sciatori.c │ │ ├── sciatori.h │ │ ├── skilift.c │ │ ├── skilift.h │ │ ├── skilifts.c │ │ ├── skilifts.h │ │ └── skilifts.txt ├── 2016 │ ├── 22febbraio - Grafo Colorato │ │ ├── Tema esame 2016_02_22 │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ ├── main.c │ │ │ ├── vertice.c │ │ │ └── vertice.h │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ ├── 26Gennaio - Via Emilia │ │ ├── Tema esame 2016_01_26 │ │ │ ├── citta.c │ │ │ ├── citta.h │ │ │ ├── citta.txt │ │ │ ├── main.c │ │ │ ├── proposta1.txt │ │ │ └── proposta2.txt │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ ├── 9Settembre - Insiemi indipendenti │ │ ├── Tema esame 2016_09_09 │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ ├── main.c │ │ │ ├── proposta.txt │ │ │ ├── vertice.c │ │ │ └── vertice.h │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ └── Tema esame 2016_06_14 │ │ ├── categoria.c │ │ ├── categoria.h │ │ ├── categorie.c │ │ ├── categorie.h │ │ ├── main.c │ │ ├── ordine.txt │ │ ├── prodotti.c │ │ ├── prodotti.h │ │ ├── prodotto.c │ │ └── prodotto.h ├── 2017 │ ├── 18Settembre - Koala │ │ └── main.c │ ├── 26Giugno - Hotel │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ └── 4Febbraio - Social network │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h ├── 2018 │ ├── 13Febbraio - Grafi e connessione │ │ ├── Grafo.c │ │ ├── Grafo.h │ │ ├── Tema esame 2018_02_13 │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ ├── main.c │ │ │ ├── output.tx │ │ │ ├── sol1.txt │ │ │ ├── sol2.txt │ │ │ ├── vertice.c │ │ │ └── vertice.h │ │ ├── main.c │ │ ├── point.c │ │ ├── point.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── st.c │ │ └── st.h │ ├── 13Settembre - Titoli azionari(esteso) │ │ ├── main.c │ │ ├── quotazione.c │ │ ├── quotazione.h │ │ ├── quotazioni.c │ │ ├── quotazioni.h │ │ ├── time.c │ │ ├── time.h │ │ ├── titoli.c │ │ ├── titoli.h │ │ ├── titolo.c │ │ └── titolo.h │ ├── 21Giugno - Tessere │ │ ├── board.txt │ │ ├── main.c │ │ └── tiles.txt │ └── 29Gennaio - Agenzia per il lavoro │ │ ├── main.c │ │ ├── st.c │ │ └── st.h ├── 2019 │ ├── 18Settembre - posizione di risorse (x) │ │ ├── Tema esame 2019_08_18 │ │ │ ├── Queue.c │ │ │ ├── Queue.h │ │ │ ├── copertura.c │ │ │ ├── copertura.h │ │ │ ├── corretto.txt │ │ │ ├── main.c │ │ │ ├── mappa.c │ │ │ ├── mappa.h │ │ │ ├── mappa.txt │ │ │ ├── proposta.txt │ │ │ ├── proposta1.txt │ │ │ └── risorsa.h │ │ ├── main.c │ │ ├── mappa.txt │ │ └── proposta.txt │ ├── 22Febbraio - Azienda(x) │ │ ├── Tema esame 2019_02_22 │ │ │ ├── dipendente.c │ │ │ ├── dipendente.h │ │ │ ├── dipendenti.c │ │ │ ├── dipendenti.h │ │ │ ├── dipendenti.txt │ │ │ ├── divisione.c │ │ │ ├── divisione.h │ │ │ ├── divisioni.c │ │ │ ├── divisioni.h │ │ │ ├── divisioni.txt │ │ │ ├── main.c │ │ │ ├── output.txt │ │ │ └── proposta.txt │ │ ├── dipendente.c │ │ ├── dipendente.h │ │ ├── divisioni.c │ │ ├── divisioni.h │ │ └── main.c │ ├── 2Luglio - Stazioni di ricarica (x) │ │ ├── Tema esame 2019_07_02 │ │ │ ├── distanze.txt │ │ │ ├── main.c │ │ │ ├── popolazione.txt │ │ │ ├── proposta.txt │ │ │ └── stazioniComune.txt │ │ └── main.c │ └── 31Gennaio - Kernel │ │ ├── Tema esame 2019_01_31 │ │ ├── GRAPH.c │ │ ├── GRAPH.h │ │ ├── SymbolTable.c │ │ ├── SymbolTable.h │ │ ├── grafo.txt │ │ ├── kernel.txt │ │ └── main.c │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h ├── 2020 │ ├── 28Gennaio - K-Core j-Edge-connected │ │ ├── Tema esame 2020_01_28 │ │ │ ├── ST.c │ │ │ ├── ST.h │ │ │ ├── grafo.c │ │ │ ├── grafo.h │ │ │ ├── grafo.txt │ │ │ ├── grafo1.txt │ │ │ ├── main.c │ │ │ ├── vertice.c │ │ │ └── vertice.h │ │ ├── graph.c │ │ ├── graph.h │ │ ├── main.c │ │ ├── st.c │ │ └── st.h │ ├── Tema esame 2020_02_21 │ │ ├── BST.c │ │ ├── BST.h │ │ ├── main.c │ │ ├── menu.c │ │ ├── menu.h │ │ ├── menu.txt │ │ ├── piatti.c │ │ ├── piatti.h │ │ ├── piatti.txt │ │ ├── piatto.c │ │ └── piatto.h │ ├── Tema esame 2020_06_22 │ │ ├── fatto.txt │ │ ├── main.c │ │ ├── parole.c │ │ ├── parole.h │ │ ├── parole.txt │ │ ├── posizione.c │ │ ├── posizione.h │ │ ├── schema.c │ │ ├── schema.h │ │ ├── schema.txt │ │ ├── word.c │ │ ├── word.h │ │ ├── wordLun.c │ │ └── wordLun.h │ └── Tema esame 2020_09_03 │ │ ├── griglia.txt │ │ ├── main.c │ │ ├── proposta.txt │ │ ├── schema.c │ │ └── schema.h ├── 2021 │ ├── Tema esame 2021_01_26 │ │ ├── ST.c │ │ ├── ST.h │ │ ├── dungeon.txt │ │ ├── graph.c │ │ ├── graph.h │ │ ├── main.c │ │ ├── path.txt │ │ ├── stanza.c │ │ └── stanza.h │ ├── Tema esame 2021_02_16 │ │ ├── ST.c │ │ ├── ST.h │ │ ├── argomento.c │ │ ├── argomento.h │ │ ├── articoli.c │ │ ├── articoli.h │ │ ├── articoli.txt │ │ ├── articolo.c │ │ ├── articolo.h │ │ ├── main.c │ │ ├── output.txt │ │ ├── programma.c │ │ ├── programma.h │ │ └── proposta.txt │ ├── Tema esame 2021_06_15 │ │ ├── Corridoio.c │ │ ├── Corridoio.h │ │ ├── Magazzino.c │ │ ├── Magazzino.h │ │ ├── Pacchi.c │ │ ├── Pacchi.h │ │ ├── Pacco.c │ │ ├── Pacco.h │ │ ├── Scaffale.c │ │ ├── Scaffale.h │ │ ├── Slot.c │ │ ├── Slot.h │ │ ├── magazzino.txt │ │ ├── main.c │ │ └── pacchi.txt │ ├── Tema esame 2021_09_01 │ │ ├── cicli.c │ │ ├── cicli.h │ │ ├── cicli.txt │ │ ├── ciclo.c │ │ ├── ciclo.h │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── grafo.o │ │ ├── grafo.txt │ │ ├── main.c │ │ └── verifica.txt │ └── e.txt ├── 2022 │ ├── Tema esame 2022_01_27 │ │ ├── copertura.c │ │ ├── copertura.h │ │ ├── griglia.c │ │ ├── griglia.h │ │ ├── griglia.txt │ │ ├── main.c │ │ ├── proposta_ko_bianco.txt │ │ ├── proposta_ko_outofbound.txt │ │ ├── proposta_ko_overlap.txt │ │ └── proposta_ok.txt │ ├── Tema esame 2022_02_09 │ │ ├── 2022_02_09 │ │ │ ├── build │ │ │ │ └── Debug │ │ │ │ │ ├── griglia.o │ │ │ │ │ ├── main.o │ │ │ │ │ ├── outDebug.exe │ │ │ │ │ └── percorso.o │ │ │ ├── griglia.c │ │ │ ├── griglia.h │ │ │ ├── griglia.txt │ │ │ ├── main.c │ │ │ ├── percorso.c │ │ │ ├── percorso.h │ │ │ └── proposta.txt │ │ ├── griglia.c │ │ ├── griglia.h │ │ ├── griglia.txt │ │ ├── main.c │ │ ├── percorso.c │ │ ├── percorso.h │ │ └── proposta.txt │ ├── Tema esame 2022_06_27 │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── Tema esame 2022_06_27.exe │ │ ├── g.txt │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── main.c │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── grafo.o │ │ │ │ └── main.o │ │ └── partizione.txt │ ├── Tema esame 2022_09_02 │ │ ├── grid.c │ │ ├── grid.h │ │ ├── griglia.txt │ │ ├── main.c │ │ ├── parole.txt │ │ ├── proposta.txt │ │ ├── sol.c │ │ ├── sol.h │ │ ├── words.c │ │ └── words.h │ └── e.txt ├── 2023 │ ├── Tema esame 2023_02_07 │ │ ├── 2023_02_07 │ │ │ ├── bonus.c │ │ │ ├── bonus.h │ │ │ ├── bonus1.txt │ │ │ ├── bonus2.txt │ │ │ ├── bonusList.c │ │ │ ├── bonusList.h │ │ │ ├── grid.c │ │ │ ├── grid.h │ │ │ ├── grid.txt │ │ │ ├── main.c │ │ │ ├── mosse.txt │ │ │ ├── mosse1.txt │ │ │ ├── mosse2.txt │ │ │ ├── scelta.c │ │ │ ├── scelta.h │ │ │ ├── token.c │ │ │ └── token.h │ │ ├── bonus.c │ │ ├── bonus.h │ │ ├── bonus1.txt │ │ ├── bonus2.txt │ │ ├── grid.c │ │ ├── grid.h │ │ ├── grid.txt │ │ ├── main.c │ │ ├── mosse.txt │ │ ├── mosse1.txt │ │ ├── mosse2.txt │ │ ├── token.c │ │ ├── token.h │ │ ├── tokenbonus.c │ │ └── tokenbonus.h │ ├── Tema esame 2023_02_21 │ │ ├── assegnazione_ok.txt │ │ ├── assegnazione_wrong_assegnazione.txt │ │ ├── assegnazione_wrong_dimensione.txt │ │ ├── assegnazione_wrong_valori.txt │ │ ├── assegnazione_wrong_valori_2.txt │ │ ├── incarichi.c │ │ ├── incarichi.h │ │ ├── input.txt │ │ ├── main.c │ │ ├── persone.c │ │ ├── persone.h │ │ ├── sinergia.c │ │ └── sinergia.h │ ├── Tema esame 2023_05_11 │ │ ├── 2023_05_11 │ │ │ ├── Graph.c │ │ │ ├── Graph.h │ │ │ ├── TriPack.c │ │ │ ├── TriPack.h │ │ │ ├── grafo.txt │ │ │ ├── grafo_2.txt │ │ │ ├── main.c │ │ │ ├── test.txt │ │ │ └── test_2.txt │ │ ├── grafo.c │ │ ├── grafo.h │ │ ├── grafo.txt │ │ ├── main.c │ │ ├── proposta_no_archi_non_esistenti.txt │ │ ├── proposta_no_insiemi_non_disgiunti.txt │ │ ├── proposta_no_non_3_vertici.txt │ │ ├── proposta_no_vertici_no_grafo.txt │ │ ├── proposta_no_vertici_non_diversi.txt │ │ ├── proposta_ok.txt │ │ ├── trianglePacking.c │ │ └── trianglePacking.h │ └── e.txt ├── 2024 │ ├── 20240226 │ │ ├── 2024_02_26 │ │ │ ├── act.c │ │ │ └── act.h │ │ ├── ACT.c │ │ ├── ACT.h │ │ ├── CMakeLists.txt │ │ ├── cmake-build-debug │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.27.8 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeRCCompiler.cmake │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ └── CompilerIdC │ │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ ├── CMakeConfigureLog.yaml │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── clion-Debug-log.txt │ │ │ │ ├── clion-environment.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── rules.ninja │ │ │ ├── Testing │ │ │ │ └── Temporary │ │ │ │ │ └── LastTest.log │ │ │ ├── build.ninja │ │ │ └── cmake_install.cmake │ │ ├── ex.txt │ │ ├── input.txt │ │ ├── main.c │ │ └── q1660_312200-20240226_a36834.pdf │ └── 20240913 │ │ ├── 2024_09_13.pdf │ │ └── 2024_09_13 │ │ ├── DISTMATR.c │ │ ├── DISTMATR.h │ │ ├── ELENCO.c │ │ ├── ELENCO.h │ │ ├── Relazione_S296525_13092024.pdf │ │ ├── SEDI.c │ │ ├── SEDI.h │ │ ├── SERVIZI.c │ │ ├── SERVIZI.h │ │ ├── build │ │ └── Debug │ │ │ ├── DISTMATR.o │ │ │ ├── ELENCO.o │ │ │ ├── SEDI.o │ │ │ ├── SERVIZI.o │ │ │ ├── main.o │ │ │ └── outDebug.exe │ │ ├── data.txt │ │ ├── main.c │ │ ├── testSedi.txt │ │ ├── testServizi1.txt │ │ └── testServizi2.txt └── README.md ├── Documenti ├── Consigli_Preparazione.pdf ├── Esercitazione_teoria_1.pdf ├── Esercitazione_teoria_2.pdf ├── Esercizi_di_teoria.pdf ├── Funzioni_Libreria.pdf ├── Raccolta_Esercizi.txt └── Teoria_Risolti.pdf └── pdf ├── 20240213 └── 2024_02_13.pdf ├── 20230207_Programmazione.pdf ├── 20230207_Teoria.pdf ├── AP_2014-2018.pdf ├── AP_2019_2020.pdf ├── AP_ASD_AppelliExam_2020_2021 [PROGRAMMAZIONE].pdf ├── ASD_2022.pdf ├── Temi_Esame ├── 20240913 │ └── 2024_09_13.pdf ├── 2014_02_06.pdf ├── 2014_02_24.pdf ├── 2014_06_27.pdf ├── 2014_09_03.pdf ├── 2015_02_02.pdf ├── 2015_02_23.pdf ├── 2015_06_16.pdf ├── 2015_09_02.pdf ├── 2016_01_26.pdf ├── 2016_02_22.pdf ├── 2016_06_14.pdf ├── 2016_09_09.pdf ├── 2017_02_04.pdf ├── 2017_02_22.pdf ├── 2017_06_26.pdf ├── 2017_09_18.pdf ├── 2018_01_29.pdf ├── 2018_02_13.pdf ├── 2018_06_21.pdf ├── 2018_09_13.pdf ├── 2019_01_31.pdf ├── 2019_02_22.pdf ├── 2019_07_02.pdf ├── 2019_09_18.pdf ├── 2020_01_28.pdf ├── 2020_02_21.pdf ├── 2022_01_27.pdf ├── 2022_02_09.pdf ├── 2022_06_27.pdf ├── 2022_09_02.pdf ├── 2022_09_02.txt ├── 2023_02_07.pdf ├── 2023_05_11.pdf └── 2024_02_26.pdf ├── soluzioni_prog ├── 220127_Commento.pdf ├── 220209_Commento.pdf └── BozzeSoluzione.zip └── teoria ├── compito d'esame di teoria I appello 2021-22.pdf ├── esercizi di teoria risolti.pdf ├── preparazione al compito di teoria.pdf └── soluzioni compito esame teoria I appello 2021-22.pdf /CalcoloCombinatorio/09knapsack_no_pruning/Item.h: -------------------------------------------------------------------------------- 1 | #ifndef ITEM_H 2 | #define ITEM_H 3 | 4 | #include 5 | #define MAXC 11 6 | 7 | typedef struct { char name[MAXC]; int size; int value;} Item; 8 | 9 | Item ITEMscan(); 10 | void ITEMshow(Item x); 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/12knapsack_pruning/Item.h: -------------------------------------------------------------------------------- 1 | #ifndef ITEM_H 2 | #define ITEM_H 3 | 4 | #include 5 | #define MAXC 11 6 | 7 | typedef struct { char name[MAXC]; int size; int value;} Item; 8 | 9 | Item ITEMscan(); 10 | void ITEMshow(Item x); 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/4_5_1_Sostanze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/CalcoloCombinatorio/4_5_1_Sostanze.c -------------------------------------------------------------------------------- /CalcoloCombinatorio/Calcolo_Combinatorio_formulario.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/CalcoloCombinatorio/Calcolo_Combinatorio_formulario.pdf -------------------------------------------------------------------------------- /CalcoloCombinatorio/Codice C per 02 Gli ordinamenti ricorsivi (1)/ConvexHull/file1.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -3 -3 3 | -1 -1 4 | -2 1 5 | 0 5 6 | 1 1 7 | 1 -4 8 | 3 -2 9 | 4 1 10 | 4 4 11 | 6 0 12 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/Codice C per 02 Gli ordinamenti ricorsivi (1)/ConvexHull/file3.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -3 -3 3 | -2 1 4 | 0 5 5 | 4 4 6 | 6 0 7 | 1 -4 8 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/Codice C per 02 Gli ordinamenti ricorsivi (1)/ConvexHull/stack.h: -------------------------------------------------------------------------------- 1 | void STACKinit(int); 2 | int STACKempty(); 3 | int STACKsize(); 4 | void STACKpush(void *); 5 | void* STACKpop(); 6 | void* STACKtop(); 7 | void* STACKnext_to_top(); 8 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/Codice C per 02 Gli ordinamenti ricorsivi (1)/RecursiveSort/RecursiveSorting.h: -------------------------------------------------------------------------------- 1 | void MergeSort(Item A[], Item B[], int N); 2 | void QuickSort(Item A[], int N); 3 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/Factorial with explicit stack/stack.h: -------------------------------------------------------------------------------- 1 | #ifndef STACK_H_DEFINED 2 | #define STACK_H_DEFINED 3 | 4 | typedef struct stack *S; 5 | 6 | S STACKinit(int maxN); 7 | int STACKempty(S); 8 | int STACKsize(S); 9 | void STACKpush(S, int); 10 | int STACKpop(S); 11 | int STACKtop(S); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/interruttori/switches.txt: -------------------------------------------------------------------------------- 1 | 4 5 2 | 1 1 0 0 1 3 | 1 0 1 0 0 4 | 0 1 1 1 0 5 | 1 0 0 1 0 6 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/prodmoltschemagrafico.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/CalcoloCombinatorio/prodmoltschemagrafico.pdf -------------------------------------------------------------------------------- /CalcoloCombinatorio/sodoku/sodoku.txt: -------------------------------------------------------------------------------- 1 | 5 3 0 0 7 0 0 0 0 2 | 6 0 0 1 9 5 0 0 0 3 | 0 9 8 0 0 0 0 6 0 4 | 8 0 0 0 6 0 0 0 3 5 | 4 0 0 8 0 3 0 0 1 6 | 7 0 0 0 2 0 0 0 6 7 | 0 6 0 0 0 0 2 8 0 8 | 0 0 0 4 1 9 0 0 5 9 | 0 0 0 0 8 0 0 7 9 10 | -------------------------------------------------------------------------------- /CalcoloCombinatorio/sodoku1/sodoku1.txt: -------------------------------------------------------------------------------- 1 | 0 0 0 0 0 0 0 1 2 2 | 0 0 0 0 3 5 0 0 0 3 | 0 0 0 6 0 0 0 7 0 4 | 7 0 0 0 0 0 3 0 0 5 | 0 0 0 4 0 0 8 0 0 6 | 1 0 0 0 0 0 0 0 0 7 | 0 0 0 1 2 0 0 0 0 8 | 0 8 0 0 0 0 0 4 0 9 | 0 5 0 0 0 0 6 0 0 10 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.1 FIFO/ItemADT/in.txt: -------------------------------------------------------------------------------- 1 | aa 2 2 | bb 3 3 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.1 FIFO/ItemADT/out.txt: -------------------------------------------------------------------------------- 1 | aa 2 2 | bb 3 3 | cc 5 4 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.1 FIFO/ItemQuasiADT/in.txt: -------------------------------------------------------------------------------- 1 | aa 2 2 | bb 3 3 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.1 FIFO/ItemQuasiADT/out.txt: -------------------------------------------------------------------------------- 1 | aa 2 2 | bb 3 3 | cc 5 4 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.2 sportellosingolo/PQ.h: -------------------------------------------------------------------------------- 1 | #ifndef PQ_H 2 | #define PQ_H 3 | 4 | #include "Item.h" 5 | 6 | void PQinit(); 7 | int PQempty(); 8 | void PQinsert(Item val); 9 | Item PQextractMax(); 10 | void PQstore(FILE* fout); 11 | void PQload(FILE* fin); 12 | int PQsize(); 13 | void PQfree(); 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.2 sportellosingolo/in.txt: -------------------------------------------------------------------------------- 1 | 1 S1 CL1 2 | 3 S1 CL2 3 | 3 S1 CL999 4 | 2 S2 CL3 5 | -1 X X -------------------------------------------------------------------------------- /Esercizi Generali/4.1.3 sportellimultipli/in.txt: -------------------------------------------------------------------------------- 1 | 0 4 2 | 1 S1 CL1 3 | 3 S1 CL2 4 | 3 S1 CL999 5 | 2 S2 CL3 6 | 1 2 7 | 1 S1 CL1 8 | 3 S1 CL2 9 | 2 1 10 | 1 S1 CL1 -------------------------------------------------------------------------------- /Esercizi Generali/4.1.4 catalogoprodotti/prodotti1.txt: -------------------------------------------------------------------------------- 1 | a 50.0 2 | b 40.0 3 | c 60.0 4 | d 70.0 5 | e 0.0 6 | f 45.0 7 | g 42.0 8 | fine -------------------------------------------------------------------------------- /Esercizi Generali/4.1.5 estrazioneAdHocBST/alb1.txt: -------------------------------------------------------------------------------- 1 | Gaa 5 1 1 2 | Af 2 1 0 3 | Aez 3 0 0 4 | Moo 4 1 1 5 | H 5 0 1 6 | Jik 1 0 0 7 | Zzz 7 0 0 -------------------------------------------------------------------------------- /Esercizi Generali/4.1.5 estrazioneAdHocBST/out.txt: -------------------------------------------------------------------------------- 1 | Gaa 5 2 | Moo 4 3 | Zzz 7 4 | H 5 5 | Jik 1 6 | Af 2 7 | Aez 3 8 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.6 STstatica/ST.h: -------------------------------------------------------------------------------- 1 | #ifndef ST_H 2 | #define ST_H 3 | 4 | #include "Item.h" 5 | 6 | typedef struct symboltable *ST; 7 | 8 | ST STinit(int maxN); 9 | void STfree(ST st); 10 | ST STload(FILE *fin); 11 | int STsearch(ST st, Key k); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.6 STstatica/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | mat0000006 3 | Sara 4 | Neri 5 | 10/02/1990 6 | mat0000001 7 | Carlo 8 | Rossi 9 | 21/11/1991 10 | mat0000009 11 | Emilio 12 | Verdi 13 | 04/06/1989 14 | mat0000011 15 | Carla 16 | Bianchi 17 | 08/07/1992 18 | mat0000002 19 | Gianluca 20 | Gialli 21 | 01/08/1990 -------------------------------------------------------------------------------- /Esercizi Generali/4.1.7 STdinamica/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | mat0000006 3 | Sara 4 | Neri 5 | 10/02/1990 6 | mat0000001 7 | Carlo 8 | Rossi 9 | 21/11/1991 10 | mat0000009 11 | Emilio 12 | Verdi 13 | 04/06/1989 14 | mat0000011 15 | Carla 16 | Bianchi 17 | 08/07/1992 18 | mat0000002 19 | Gianluca 20 | Gialli 21 | 01/08/1990 -------------------------------------------------------------------------------- /Esercizi Generali/4.1.7 STdinamica/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/4.1.7 STdinamica/output.txt -------------------------------------------------------------------------------- /Esercizi Generali/4.1.8 multimediali/customers.txt: -------------------------------------------------------------------------------- 1 | CL001 John Smith Private 2 | 3 | CL002 Luke Ross Commercial 4 | 5 | CL003 Agatha Black Private 6 | 7 | CL004 Douglas McAllister Privato 8 | 9 | CL005 Mary Green Commercial 10 | CL006 Albert Einstein Academic 11 | CL007 Robert Sedgewick Academic 12 | none 13 | 14 | -------------------------------------------------------------------------------- /Esercizi Generali/4.1.8 multimediali/traffic.txt: -------------------------------------------------------------------------------- 1 | CL001 124 12 2 | 3 | CL002 7657 912 4 | 5 | CL002 3245 786 6 | 7 | CL003 1000 100 8 | 9 | CL001 2121 234 10 | 11 | CL004 67 2 12 | 13 | CL005 1500 500 14 | CL006 1 1 15 | CL007 100 10050 -------------------------------------------------------------------------------- /Esercizi Generali/4.2.1 torneo/itemADT/torneo.txt: -------------------------------------------------------------------------------- 1 | 3 2 | P001 3 | P002 4 | P003 -------------------------------------------------------------------------------- /Esercizi Generali/4.2.1 torneo/itemADT/torneo1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | P001 3 | P002 4 | P003 5 | P004 6 | P005 7 | P006 8 | -------------------------------------------------------------------------------- /Esercizi Generali/4.2.1 torneo/itemQuasiADT/torneo.txt: -------------------------------------------------------------------------------- 1 | 3 2 | P001 3 | P002 4 | P003 -------------------------------------------------------------------------------- /Esercizi Generali/4.2.1 torneo/itemQuasiADT/torneo1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | P001 3 | P002 4 | P003 5 | P004 6 | P005 7 | P006 8 | -------------------------------------------------------------------------------- /Esercizi Generali/4.2.2 impianti/pass.txt: -------------------------------------------------------------------------------- 1 | SK1 1 10 2 | SK2 1 12 3 | SK3 1 2 4 | SK1 2 9 5 | SK2 2 34 6 | SK2 2 45 7 | SK2 2 46 8 | SK6 2 23 9 | SK1 3 12 10 | SK1 1 21 11 | SK1 1 12 -------------------------------------------------------------------------------- /Esercizi Generali/4.2.2 impianti/skilift.txt: -------------------------------------------------------------------------------- 1 | SK1 10 2 | SK2 11 3 | SK3 9 4 | SK4 4 5 | SK5 8 6 | SK6 19 7 | SK7 6 8 | SK8 4 -------------------------------------------------------------------------------- /Esercizi Generali/4.3.1 GrafoRegolare/in.txt: -------------------------------------------------------------------------------- 1 | 4 2 | A 3 | Bb 4 | CcC 5 | dDd 6 | A Bb 3 7 | Bb CcC 2 8 | dDd A 4 9 | CcC dDd -3 10 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.2 DiametroGrafo/in2.txt: -------------------------------------------------------------------------------- 1 | 5 2 | a 3 3 | b 2 4 | c 1 5 | d 5 6 | e 4 7 | a b 5 8 | a d 5 9 | a e 7 10 | b e 3 11 | c a 9 12 | c d 4 13 | d a 3 14 | d c 3 15 | e c 4 -------------------------------------------------------------------------------- /Esercizi Generali/4.3.2 DiametroGrafo/in3.txt: -------------------------------------------------------------------------------- 1 | 7 2 | a 0 3 | b 0 4 | c 0 5 | d 0 6 | e 0 7 | f 0 8 | g 0 9 | a b 5 10 | a c 5 11 | b d 7 12 | b e 3 13 | d f 9 14 | d g 4 15 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.2 DiametroGrafo/in_mini.txt: -------------------------------------------------------------------------------- 1 | 5 2 | Alfa 23 3 | Beta 12 4 | Gamma 9 5 | Omega -4 6 | Tau 45 7 | Alfa Beta 1 8 | Alfa Gamma 4 9 | Alfa Omega 6 10 | Beta Alfa 12 11 | Beta Omega 56 12 | Beta Tau 99 13 | Gamma Omega -12 14 | Gamma Tau 2 15 | Tau Alfa 34 16 | Tau Omega -199 17 | Omega Tau 8 18 | Omega Alfa 12 -------------------------------------------------------------------------------- /Esercizi Generali/4.3.2 DiametroGrafo/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/4.3.2 DiametroGrafo/main -------------------------------------------------------------------------------- /Esercizi Generali/4.3.3 ReteElaboratori/ST.h: -------------------------------------------------------------------------------- 1 | #ifndef ST_H_INCLUDED 2 | #define ST_H_INCLUDED 3 | 4 | typedef struct hashtable *ST; 5 | 6 | ST STinit(int maxN); 7 | void STfree(ST ht); 8 | void STinsert(ST ht, char *str, int index); 9 | int STsearch(ST ht, char *str); 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.3 ReteElaboratori/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/4.3.3 ReteElaboratori/main.c -------------------------------------------------------------------------------- /Esercizi Generali/4.3.4 SCC/in0.txt: -------------------------------------------------------------------------------- 1 | A B 2 | B C 3 | C D 4 | D C 5 | E A 6 | E F 7 | B E 8 | B F 9 | F G 10 | G F 11 | C G 12 | G H 13 | D H 14 | H H 15 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.4 SCC/in1.txt: -------------------------------------------------------------------------------- 1 | nodo1 nodo3 2 | nodo2 nodo3 3 | nodo1 nodo4 4 | nodo4 nodo5 5 | nodo4 nodo2 6 | nodo2 nodo1 7 | nodo1 nodo5 8 | nodo5 nodo3 -------------------------------------------------------------------------------- /Esercizi Generali/4.3.4 SCC/in2.txt: -------------------------------------------------------------------------------- 1 | nodo0 nodo4 2 | nodo1 nodo0 3 | nodo2 nodo1 4 | nodo2 nodo3 5 | nodo3 nodo2 6 | nodo4 nodo1 7 | nodo5 nodo1 8 | nodo5 nodo4 9 | nodo5 nodo6 10 | nodo6 nodo5 11 | nodo6 nodo2 12 | nodo7 nodo3 13 | nodo7 nodo6 14 | nodo7 nodo7 15 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.4 SCC/in3.txt: -------------------------------------------------------------------------------- 1 | A A 2 | B B 3 | C C 4 | D D -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/Graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/4.3.5 AllPairsShortestPaths/Graph.c -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/ST.h: -------------------------------------------------------------------------------- 1 | #ifndef ST_H_INCLUDED 2 | #define ST_H_INCLUDED 3 | 4 | typedef struct hashtable *ST; 5 | 6 | ST STinit(int maxN); 7 | void STfree(ST ht); 8 | void STinsert(ST ht, char *str, int index); 9 | int STsearch(ST ht, char *str); 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/cormen.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 1 8 | A C 2 9 | B D 3 10 | C D 1 11 | C E 5 12 | D E 1 13 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/grafo.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | A B 34 10 | A C 12 11 | A D 67 12 | A E 45 13 | A F 12 14 | B E 90 15 | B F 5 16 | C D 5 17 | C F 90 18 | D E 12 19 | D G 91 20 | E F 1 21 | E G 2 22 | F G 3 -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/grafo1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | A 3 | B 4 | C 5 | D 6 | A B 1 7 | A C 1 8 | A D 1 9 | B C 1 10 | B D 1 11 | C D 1 -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/grafo2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | A 3 | B 4 | C 5 | D 6 | A B 3 7 | A D 2 8 | B C 1 9 | B D 5 10 | D C 3 11 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.5 AllPairsShortestPaths/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/4.3.5 AllPairsShortestPaths/main.c -------------------------------------------------------------------------------- /Esercizi Generali/4.3.6 dungeon/Graph.h: -------------------------------------------------------------------------------- 1 | #ifndef GRAPH_H 2 | #define GRAPH_H 3 | #include "ST.h" 4 | 5 | 6 | typedef struct graph *Graph; 7 | 8 | Graph GRAPHinit(int V); 9 | void GRAPHfree(Graph G); 10 | Graph GRAPHload(FILE *fin); 11 | void GRAPHpath(Graph G); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Esercizi Generali/4.3.7 solitario/ST.h: -------------------------------------------------------------------------------- 1 | #ifndef ST_H_DEFINED 2 | #define ST_H_DEFINED 3 | 4 | #define MAXC 21 5 | 6 | typedef struct symboltable *ST; 7 | 8 | 9 | ST STinit(int maxN); 10 | void STfree(ST st); 11 | int STinsert(ST st, char *s, int id); 12 | int STsearch(ST st, char *s); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Esercizi Generali/5.2.2 composizionestringhe/stringhe.txt: -------------------------------------------------------------------------------- 1 | 6 2 | ab 3 | abr 4 | d 5 | aca 6 | abra 7 | po 8 | 9 | -------------------------------------------------------------------------------- /Esercizi Generali/5.2.7 vassoiopasticcini/paste.txt: -------------------------------------------------------------------------------- 1 | 6 2 | bigne_zabaione 28 5 3 | bigne_panna 40 10 4 | cannoncino 28 10 5 | tartufo_cioccolato 26 10 6 | crostatina_frutta 40 20 7 | bigne_crema 28 20 -------------------------------------------------------------------------------- /Esercizi Generali/5.2.8 generazionestringhe/stringhe.txt: -------------------------------------------------------------------------------- 1 | 6 2 | ab 3 | abr 4 | d 5 | aca 6 | abra 7 | po 8 | 9 | -------------------------------------------------------------------------------- /Esercizi Generali/5.2.9 carrellospesa/prodotti.txt: -------------------------------------------------------------------------------- 1 | 6 2 | Latte 1.29 3 | Pane 0.99 4 | Biscotti 3.50 5 | Nutella 5.49 6 | Zucchero 0.78 7 | Caffe 1.29 8 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.1 medicinali/ts.h: -------------------------------------------------------------------------------- 1 | typedef struct tabella *TS; 2 | 3 | TS TScrea(int maxN); 4 | void TSlibera(TS t); 5 | int TSdimensione(TS t); 6 | int TSaggiungi(TS t, char *str); 7 | int TScerca(TS t, char *str); 8 | int TScercaOAggiungi(TS t, char *str); 9 | char *TSleggiIndice(TS t, int id); 10 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.10 turista/attrazioni.txt: -------------------------------------------------------------------------------- 1 | Museo_Egizio,Torino,4,5 2 | Colosseo,Roma,4,6 3 | Duomo,Milano,3,7 4 | Uffizi,Firenze,5,10 5 | Castello_Sforzesco,Milano,3,4 6 | Giardino_dei_Boboli,Firenze,5,8 7 | Villa_Borghese,Roma,4,7 8 | Basilica_Superga,Torino,1,3 9 | Basilica_San_Pietro,Roma,5,1 10 | Palazzo_Reale,Torino,2,4 11 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.10 turista/collegamenti.txt: -------------------------------------------------------------------------------- 1 | Torino-Milano 70 2 | Roma-Pescara 300 3 | Milano-Firenze 110 4 | Firenze-Torino 140 5 | Roma-Firenze 340 6 | Firenze-Ancona 90 7 | Pescara-Ancona 60 8 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.11 socialnetwork/cliqueDispRip/grafo.txt: -------------------------------------------------------------------------------- 1 | A B 1 2 | A C 100 3 | C B 1 4 | C D 1 5 | D E 2 6 | E F 2 7 | F G 2 8 | G D 2 9 | D F 2 10 | G E 3 11 | A Z 9 12 | Z Y 100 13 | Z X 200 14 | Y X 1 15 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.11 socialnetwork/cliqueDivNoPrun/clique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/5.3.11 socialnetwork/cliqueDivNoPrun/clique.c -------------------------------------------------------------------------------- /Esercizi Generali/5.3.11 socialnetwork/cliqueDivNoPrun/grafo.txt: -------------------------------------------------------------------------------- 1 | A B 1 2 | A C 100 3 | C B 1 4 | C D 1 5 | D E 2 6 | E F 2 7 | F G 2 8 | G D 2 9 | D F 2 10 | G E 3 11 | A Z 9 12 | Z Y 100 13 | Z X 200 14 | Y X 1 15 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.11 socialnetwork/cliqueDivPrun/clique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/5.3.11 socialnetwork/cliqueDivPrun/clique.c -------------------------------------------------------------------------------- /Esercizi Generali/5.3.11 socialnetwork/cliqueDivPrun/grafo.txt: -------------------------------------------------------------------------------- 1 | A B 1 2 | A C 100 3 | C B 1 4 | C D 1 5 | D E 2 6 | E F 2 7 | F G 2 8 | G D 2 9 | D F 2 10 | G E 3 11 | A Z 9 12 | Z Y 100 13 | Z X 200 14 | Y X 1 15 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.12 agenzialavoro/A.txt: -------------------------------------------------------------------------------- 1 | p0 2 | a1 a3 a0 a2 3 | p1 4 | a2 a0 a3 a1 5 | p2 6 | a1 a2 a0 a3 7 | p3 8 | a3 a0 a2 a1 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.12 agenzialavoro/B.txt: -------------------------------------------------------------------------------- 1 | a0 2 | p1 p0 p3 p2 3 | a1 4 | p3 p2 p0 p1 5 | a2 6 | p0 p3 p2 p1 7 | a3 8 | p1 p0 p3 p2 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.13 equilibrio/equilibrioDP/frecce.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 3 | 0 4 | 1 5 | 1 6 | 0 7 | 0 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.13 equilibrio/equilibrioRic/frecce.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 3 | 0 4 | 1 5 | 1 6 | 0 7 | 0 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.3 viaemilia/citta.txt: -------------------------------------------------------------------------------- 1 | 11 2 | Piacenza 102 0 3 | Fidenza 27 35 4 | Parma 190 57 5 | ReggioEmilia 171 83 6 | Modena 185 115 7 | Bologna 386 144 8 | Imola 69 177 9 | Faenza 58 193 10 | Forli' 118 207 11 | Cesena 97 225 12 | Rimini 147 253 13 | -------------------------------------------------------------------------------- /Esercizi Generali/5.3.5 corpolibero2/corpolibero2a2/corpolibero2a2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/5.3.5 corpolibero2/corpolibero2a2/corpolibero2a2.c -------------------------------------------------------------------------------- /Esercizi Generali/5.3.6 towerdefense/towerdefenseVers1/alleati.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 1 3 | 1 5 2 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.6 towerdefense/towerdefenseVers1/nemici.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 1 3 | 2 4 3 4 | 3 4 3 5 | 8 8 2 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.6 towerdefense/towerdefenseVers1/risorse.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 4 4 25 3 | 2 1 0 10 4 | 3 1 1 15 5 | 1 5 0 12 6 | 2 0 3 10 7 | 1 0 8 20 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.6 towerdefense/towerdefenseVers2/alleati.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 1 3 | 1 5 2 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.6 towerdefense/towerdefenseVers2/nemici.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 1 3 | 2 4 3 4 | 3 4 3 5 | 8 8 2 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.6 towerdefense/towerdefenseVers2/risorse.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 4 4 25 3 | 2 1 0 10 4 | 3 1 1 15 5 | 1 5 0 12 6 | 2 0 3 10 7 | 1 0 8 20 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.7 koala/famiglie.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 | 0 4 | 1 5 | 3 6 | 2 7 | 3 8 | 4 9 | 2 10 | 5 11 | 6 12 | 1 13 | 7 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.7 koala/habitat.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 2 3 | 0 4 | 1 5 | 2 6 | 1 7 | 2 8 | 4 9 | 1 10 | 2 11 | 3 12 | 4 13 | 3 14 | 0 15 | 2 16 | 3 17 | 4 18 | 0 19 | 2 20 | 3 21 | 4 22 | 5 23 | 0 24 | 1 25 | 2 26 | 3 27 | 4 28 | 4 29 | 1 30 | 2 31 | 3 32 | 4 33 | 5 34 | 0 35 | 1 36 | 2 37 | 3 38 | 4 -------------------------------------------------------------------------------- /Esercizi Generali/5.3.7 koala/nemici.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 | 0 2 3 | 0 3 4 | 1 2 5 | 1 3 6 | 2 3 -------------------------------------------------------------------------------- /Esercizi Generali/CodiceGrayeordinamentimultipli/catalogo.txt: -------------------------------------------------------------------------------- 1 | 6 2 | cod000003 white 5.50 3 | cod000005 red 4.50 4 | cod000004 green 3.50 5 | cod000001 pink 6.50 6 | cod000000 blue 2.50 7 | cod000002 brown 7.50 8 | -------------------------------------------------------------------------------- /Esercizi Generali/CodiceGrayeordinamentimultipli/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/CodiceGrayeordinamentimultipli/slides.pdf -------------------------------------------------------------------------------- /Esercizi Generali/camminonellabirinto/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/camminonellabirinto/slides.pdf -------------------------------------------------------------------------------- /Esercizi Generali/e.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Esercizi Generali/gomoku/Gomoku.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/gomoku/Gomoku.pdf -------------------------------------------------------------------------------- /Esercizi Generali/gomoku/intro_gomoku.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/gomoku/intro_gomoku.pdf -------------------------------------------------------------------------------- /Esercizi Generali/matricisparse/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Esercizi Generali/matricisparse/slides.pdf -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency list/bin/Debug/adjacency list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency list/bin/Debug/adjacency list.exe -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency list/e.txt: -------------------------------------------------------------------------------- 1 | w 2 | -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency list/obj/Debug/Dag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency list/obj/Debug/Dag.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency list/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency list/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency list/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency list/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency list/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency list/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/a.txt: -------------------------------------------------------------------------------- 1 | camicia cravatta 2 | camicia cintura 3 | cravatta giacca 4 | cintura giacca 5 | orologio orologio 6 | slip scarpe 7 | slip pantaloni 8 | pantaloni cintura 9 | pantaloni scarpe 10 | calzini scarpe 11 | -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/bin/Debug/adjacency matrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency matrix/bin/Debug/adjacency matrix.exe -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/grafo.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 8 | A C 9 | D A 10 | D E 11 | E C 12 | E A 13 | 14 | -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/grafo1.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | A C 10 | A D 11 | B D 12 | B E 13 | C F 14 | D F 15 | D G 16 | E G 17 | 18 | -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/Dag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/Dag.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/DAG/adjacency matrix/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/a.txt: -------------------------------------------------------------------------------- 1 | A B 2 | B C 3 | B D 4 | D E 5 | C C 6 | E A 7 | E B 8 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/bin/Debug/adjacency list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency List/bin/Debug/adjacency list.exe -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/inC15S28.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 8 | B C 9 | C C 10 | B D 11 | D E 12 | E B 13 | E A 14 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/inC15S38.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 8 | B D 9 | C C 10 | B C 11 | D E 12 | E B 13 | E A 14 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/in_V6_C15_S22_dfs.txt: -------------------------------------------------------------------------------- 1 | A B 2 | C D 3 | D E 4 | C F 5 | A E 6 | E B 7 | B D 8 | F F 9 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/in_V6_C15_S6_dfs.txt: -------------------------------------------------------------------------------- 1 | 6 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | A B 9 | C D 10 | A E 11 | C F 12 | E B 13 | B D 14 | E D 15 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/in_V8_C15_S41_dfs.txt: -------------------------------------------------------------------------------- 1 | A B 2 | B C 3 | C D 4 | A E 5 | F G 6 | F H 7 | D B 8 | E D 9 | B E 10 | G E 11 | H G 12 | H F 13 | G A -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/in_V8_C16_S36_scc.txt: -------------------------------------------------------------------------------- 1 | 8 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | H 10 | A B 11 | B C 12 | C D 13 | D C 14 | E A 15 | E F 16 | B E 17 | B F 18 | F G 19 | G F 20 | C G 21 | G H 22 | D H 23 | H H 24 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency List/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/out.txt: -------------------------------------------------------------------------------- 1 | A B 2 | B C 3 | B D 4 | D E 5 | C C 6 | E A 7 | E B 8 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency List/x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency List/x.txt -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/Queue.h: -------------------------------------------------------------------------------- 1 | #ifndef QUEUE_H 2 | #define QUEUE_H 3 | 4 | #include "Graph.h" 5 | 6 | typedef struct queue *Q; 7 | 8 | Q Qinit(); 9 | void Qfree(Q q); 10 | int Qempty(Q q); 11 | void Qput (Q q, Edge e); 12 | Edge Qget(Q q); 13 | 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/bin/Debug/adjacency matrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/bin/Debug/adjacency matrix.exe -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/inC15S28.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 8 | B C 9 | C C 10 | B D 11 | D E 12 | E B 13 | E A 14 | -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/Queue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/Queue.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Unweighted Graphs/Adjacency Matrix/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/bin/Debug/weighted graph adjacency list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/bin/Debug/weighted graph adjacency list.exe -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/inC15S30.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 3 8 | B C 5 9 | B D 4 10 | E A 5 11 | E B 6 12 | C C 7 13 | D E 1 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/inC15S40.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 3 8 | B D 4 9 | C C 7 10 | B C 5 11 | D E 1 12 | E B 6 13 | E A 5 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/in_V5_C18_S24_sp.txt: -------------------------------------------------------------------------------- 1 | s u 10 2 | s x 5 3 | u v 1 4 | u y 2 5 | x u 3 6 | x v 9 7 | x y 2 8 | v y 4 9 | y s 7 10 | y v 6 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/in_V5_C18_S35_sp.txt: -------------------------------------------------------------------------------- 1 | z u 6 2 | z x 7 3 | u x 8 4 | u v 5 5 | v u -2 6 | x v -3 7 | u y -4 8 | x y 9 9 | y z 2 10 | y v 7 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/in_V5_C18_S9_sp.txt: -------------------------------------------------------------------------------- 1 | s u 3 2 | s x 5 3 | u x 2 4 | u v 6 5 | x u 1 6 | x v 4 7 | x y 6 8 | v y 2 9 | y s 1 10 | y v 7 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/Item.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/PQ.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/PQ.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/pqueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency List/obj/Debug/pqueue.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/bin/Debug/weighted graph adjacency matrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/bin/Debug/weighted graph adjacency matrix.exe -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/inC15S30.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 3 8 | B C 5 9 | B D 4 10 | E A 5 11 | E B 6 12 | C C 7 13 | D E 1 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/Queue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/Queue.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/ts.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/obj/Debug/ts.o -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/prova.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | E 6 | J 7 | L 8 | M 9 | B A -1 10 | B C 2 11 | C E -1 12 | E A 2 13 | J A 3 14 | J L 2 15 | L B 4 16 | L M 3 17 | M J -6 -------------------------------------------------------------------------------- /Graph/Directed Graph/Weighted Graphs/Adjacency Matrix/s.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | E 6 | J 7 | L 8 | M 9 | B A -1 10 | B C 2 11 | C E -1 12 | E A 2 13 | J A 3 14 | J L 2 15 | L B 4 16 | L M 3 17 | M J -6 18 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/Graph.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/bin/Debug/adjacency list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/bin/Debug/adjacency list.exe -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/inC15S27.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 8 | B C 9 | B D 10 | A E 11 | C D 12 | B E 13 | D E 14 | 15 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/inC15S37.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A E 8 | A B 9 | B E 10 | B D 11 | B C 12 | C D 13 | D E -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/in_V13_C16_S10_pda.txt: -------------------------------------------------------------------------------- 1 | A B 2 | B C 3 | B D 4 | C D 5 | C E 6 | C F 7 | E F 8 | A G 9 | A H 10 | G I 11 | H I 12 | H J 13 | J K 14 | J L 15 | K L 16 | F M 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/in_V13_C16_S4_cc.txt: -------------------------------------------------------------------------------- 1 | A B 2 | A C 3 | D E 4 | D F 5 | A G 6 | H I 7 | J K 8 | J L 9 | L M 10 | G E 11 | A F 12 | F E 13 | J M -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency List/out.txt: -------------------------------------------------------------------------------- 1 | A F 2 | A B 3 | B E 4 | C G 5 | C F 6 | C D 7 | D H 8 | F G 9 | G H 10 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/bin/Debug/Adjacency Matrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/bin/Debug/Adjacency Matrix.exe -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/inC15S27.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 8 | B C 9 | B D 10 | A E 11 | C D 12 | B E 13 | D E 14 | 15 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/inC15S54.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | A B 10 | B C 11 | C D 12 | B D 13 | D E 14 | E F 15 | A G 16 | A F 17 | C E 18 | G E 19 | A C -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/inC15S61.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | A B 10 | B C 11 | C D 12 | D E 13 | E F 14 | A G 15 | A F 16 | B D 17 | D F 18 | C E 19 | G E 20 | A C 21 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/in_V8_C15_S50_bfs.txt: -------------------------------------------------------------------------------- 1 | A B 2 | C D 3 | B E 4 | C F 5 | F G 6 | D H 7 | A F 8 | C G 9 | G H -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/Queue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/Queue.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Unweighted Graphs/Adjacency Matrix/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/UF.h: -------------------------------------------------------------------------------- 1 | #ifndef UF_H 2 | #define UF_H 3 | 4 | void UFinit(int N); 5 | int UFfind(int p, int q); 6 | void UFunion(int p, int q); 7 | void UFfree(void); 8 | 9 | #endif 10 | 11 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/bin/Debug/weighted graph adjacency list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency List/bin/Debug/weighted graph adjacency list.exe -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/inC15S39.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A E 5 8 | A B 3 9 | B E 6 10 | B D 4 11 | B C 5 12 | C D 7 13 | D E 1 14 | G H 1 15 | H I 7 16 | A H 8 17 | B H 11 18 | I G 6 19 | C I 2 20 | C F 4 21 | D F 14 22 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/inC18S19.txt: -------------------------------------------------------------------------------- 1 | 9 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | H 10 | I 11 | A B 4 12 | B C 8 13 | C D 7 14 | D E 9 15 | E F 10 16 | F G 2 17 | G H 1 18 | H I 7 19 | A H 8 20 | B H 11 21 | I G 6 22 | C I 2 23 | C F 4 24 | D F 14 25 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/in_V5_C14_S32_List.txt: -------------------------------------------------------------------------------- 1 | A E 5 2 | A B 3 3 | B E 6 4 | B D 4 5 | B C 5 6 | C D 7 7 | D E 1 8 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/in_V9_C17_S20.txt: -------------------------------------------------------------------------------- 1 | A B 4 2 | B C 8 3 | C D 7 4 | D E 9 5 | E F 10 6 | F G 2 7 | G H 1 8 | H I 7 9 | A H 8 10 | B H 11 11 | I G 6 12 | C I 2 13 | C F 4 14 | D F 14 15 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/UF.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/UF.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency List/obj/Debug/main.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/UF.h: -------------------------------------------------------------------------------- 1 | #ifndef UF_H 2 | #define UF_H 3 | 4 | void UFinit(int N); 5 | void UFfree(); 6 | int UFfind(int p, int q); 7 | void UFunion(int p, int q); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/bin/Debug/weighted graph adjacency matrix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/bin/Debug/weighted graph adjacency matrix.exe -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/inC15S29.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A 3 | B 4 | C 5 | D 6 | E 7 | A B 3 8 | B C 5 9 | B D 4 10 | A E 5 11 | C D 7 12 | B E 6 13 | D E 1 14 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/inC18S19.txt: -------------------------------------------------------------------------------- 1 | 9 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | H 10 | I 11 | A B 4 12 | B C 8 13 | C D 7 14 | D E 9 15 | E F 10 16 | F G 2 17 | G H 1 18 | H I 7 19 | A H 8 20 | B H 11 21 | I G 6 22 | C I 2 23 | C F 4 24 | D F 14 25 | -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/Edge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/Edge.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/Graph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/Graph.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/ST.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/UF.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/UF.o -------------------------------------------------------------------------------- /Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Graph/Undirected Graphs/Weighted Graphs/Adjacency Matrix/obj/Debug/main.o -------------------------------------------------------------------------------- /Hash Tables/hash con linear chaining/bin/Debug/symbol table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con linear chaining/bin/Debug/symbol table.exe -------------------------------------------------------------------------------- /Hash Tables/hash con linear chaining/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con linear chaining/obj/Debug/Item.o -------------------------------------------------------------------------------- /Hash Tables/hash con linear chaining/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con linear chaining/obj/Debug/ST.o -------------------------------------------------------------------------------- /Hash Tables/hash con linear chaining/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con linear chaining/obj/Debug/main.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e double hashing/bin/Debug/symbol table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e double hashing/bin/Debug/symbol table.exe -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e double hashing/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e double hashing/obj/Debug/Item.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e double hashing/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e double hashing/obj/Debug/ST.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e double hashing/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e double hashing/obj/Debug/main.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/bin/Debug/symbol table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/bin/Debug/symbol table.exe -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/bin/Release/symbol table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/bin/Release/symbol table.exe -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/obj/Debug/Item.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/obj/Debug/ST.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/obj/Debug/main.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/obj/Release/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/obj/Release/Item.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/obj/Release/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/obj/Release/ST.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e linear probing/obj/Release/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e linear probing/obj/Release/main.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e quadratic probing/bin/Debug/symbol table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e quadratic probing/bin/Debug/symbol table.exe -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e quadratic probing/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e quadratic probing/obj/Debug/Item.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e quadratic probing/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e quadratic probing/obj/Debug/ST.o -------------------------------------------------------------------------------- /Hash Tables/hash con open addressing e quadratic probing/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Hash Tables/hash con open addressing e quadratic probing/obj/Debug/main.o -------------------------------------------------------------------------------- /Heaps/Heap.h: -------------------------------------------------------------------------------- 1 | #ifndef HEAP_H_DEFINED 2 | #define HEAP_H_DEFINED 3 | 4 | typedef struct heap *Heap; 5 | 6 | Heap HEAPinit(int maxN); 7 | void HEAPfree(Heap h); 8 | void HEAPfill(Heap h, Item val); 9 | void HEAPsort(Heap h); 10 | void HEAPdisplay(Heap h) ; 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /Heaps/bin/Debug/heapsort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/bin/Debug/heapsort.exe -------------------------------------------------------------------------------- /Heaps/heapsort.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/heapsort.depend -------------------------------------------------------------------------------- /Heaps/obj/Debug/Heap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/obj/Debug/Heap.o -------------------------------------------------------------------------------- /Heaps/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/obj/Debug/Item.o -------------------------------------------------------------------------------- /Heaps/obj/Debug/PQUEUE.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/obj/Debug/PQUEUE.o -------------------------------------------------------------------------------- /Heaps/obj/Debug/main (2).o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/obj/Debug/main (2).o -------------------------------------------------------------------------------- /Heaps/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Heaps/obj/Debug/main.o -------------------------------------------------------------------------------- /Laboratori/Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab01.pdf -------------------------------------------------------------------------------- /Laboratori/Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab02.pdf -------------------------------------------------------------------------------- /Laboratori/Lab03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab03.pdf -------------------------------------------------------------------------------- /Laboratori/Lab04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab04.pdf -------------------------------------------------------------------------------- /Laboratori/Lab05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab05.pdf -------------------------------------------------------------------------------- /Laboratori/Lab06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab06.pdf -------------------------------------------------------------------------------- /Laboratori/Lab07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab07.pdf -------------------------------------------------------------------------------- /Laboratori/Lab08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab08.pdf -------------------------------------------------------------------------------- /Laboratori/Lab09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/Lab09.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L01/Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L01/Lab01.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L01/commento completo Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L01/commento completo Lab01.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L01/commento parziale Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L01/commento parziale Lab01.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L01/soluzioni Lab01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L01/soluzioni Lab01.zip -------------------------------------------------------------------------------- /Laboratori/S293369_1/L01/soluzioni parziali Lab01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L01/soluzioni parziali Lab01.zip -------------------------------------------------------------------------------- /Laboratori/S293369_1/L02/E02/mat.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 1 2 3 3 | 4 5 6 4 | 7 8 9 -------------------------------------------------------------------------------- /Laboratori/S293369_1/L02/Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L02/Lab02.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L02/commento completo Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L02/commento completo Lab02.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L02/commento parziale Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L02/commento parziale Lab02.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L02/mat.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 1 2 3 3 | 4 5 6 4 | 7 8 9 -------------------------------------------------------------------------------- /Laboratori/S293369_1/L02/soluzioni Lab02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L02/soluzioni Lab02.zip -------------------------------------------------------------------------------- /Laboratori/S293369_1/L03/Lab03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L03/Lab03.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L03/commento completo Lab03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L03/commento completo Lab03.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L03/commento parziale Lab03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L03/commento parziale Lab03.pdf -------------------------------------------------------------------------------- /Laboratori/S293369_1/L03/soluzioni Lab03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/S293369_1/L03/soluzioni Lab03.zip -------------------------------------------------------------------------------- /Laboratori/s293369_3/L07/Lab07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L07/Lab07.pdf -------------------------------------------------------------------------------- /Laboratori/s293369_3/L07/commento parziale Lab07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L07/commento parziale Lab07.pdf -------------------------------------------------------------------------------- /Laboratori/s293369_3/L07/input files (aggiornato).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L07/input files (aggiornato).zip -------------------------------------------------------------------------------- /Laboratori/s293369_3/L08/Lab8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L08/Lab8.pdf -------------------------------------------------------------------------------- /Laboratori/s293369_3/L08/commento parziale Lab08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L08/commento parziale Lab08.pdf -------------------------------------------------------------------------------- /Laboratori/s293369_3/L08/input files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L08/input files.zip -------------------------------------------------------------------------------- /Laboratori/s293369_3/L09/E01/ST.h: -------------------------------------------------------------------------------- 1 | #ifndef ST_H 2 | #define ST_H 3 | 4 | typedef struct symboltable *ST; 5 | 6 | ST STinit(int maxN); 7 | void STfree(ST st); 8 | int STsize(ST st); 9 | void STinsert(ST st, char *str, int i); 10 | int STsearch(ST st, char *str); 11 | char *STsearchByIndex(ST st, int i); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Laboratori/s293369_3/L09/Lab9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L09/Lab9.pdf -------------------------------------------------------------------------------- /Laboratori/s293369_3/L09/input files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s293369_3/L09/input files.zip -------------------------------------------------------------------------------- /Laboratori/s296525_1/L02/E01/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_1/L02/E01/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_1/L02/E02/mat.txt: -------------------------------------------------------------------------------- 1 | 4 5 2 | 1 2 3 4 5 3 | 6 7 8 9 10 4 | 11 12 13 14 15 5 | 16 17 18 19 20 -------------------------------------------------------------------------------- /Laboratori/s296525_1/L02/E03/corse2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | GTT004 Marmolada Sebastopoli 2018/11/10 00:01:02 00:12:00 3 3 | GTT003 Einaudi Cso_Trapani 2018/09/10 14:11:23 14:38:23 2 4 | GTT002 Politecnico XVIII_Dicembre 2018/10/10 10:01:23 10:12:08 4 5 | GTT002 Politecnico Piazza_Statuto 2018/11/10 23:11:59 23:20:07 0 6 | -------------------------------------------------------------------------------- /Laboratori/s296525_1/L03/E02/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_1/L03/E02/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_1/L03/E02/output/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_1/L03/E02/output/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E01/grafo.txt: -------------------------------------------------------------------------------- 1 | 4 4 2 | 0 1 3 | 0 2 4 | 1 2 5 | 1 3 -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E01/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_2/L04/E01/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E02/anag1.txt: -------------------------------------------------------------------------------- 1 | A0001 Mario Rossi 01/02/1990 ViaMarcoPolo Torino 10129 2 | A0002 Lucia Verdi 07/11/1989 ViaTorino Milano 20123 3 | A0003 Antonio Neri 19/04/1999 GalleriaTermini Roma 00185 4 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E02/anag2.txt: -------------------------------------------------------------------------------- 1 | A0004 Anna Gialli 04/09/1995 FratelliAlinari Firenze 50123 2 | A0005 Marco Bianchi 03/07/1993 PiazzaMazzini Napoli 80135 3 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E03/easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 15 2 | 5 7 4 10 3 | 6 8 10 1 4 | 3 1 6 10 5 | 4 4 2 1 6 | 7 2 4 10 7 | 8 8 4 6 8 | 6 1 4 4 9 | 8 3 6 4 10 | 7 7 4 2 11 | 1 3 7 1 12 | 10 10 9 10 13 | 8 8 8 6 14 | 9 6 10 5 15 | 6 10 9 5 16 | 9 6 9 9 17 | 18 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E03/hard_test_set.txt: -------------------------------------------------------------------------------- 1 | 15 2 | 19 6 8 5 3 | 19 14 5 11 4 | 14 14 5 8 5 | 12 16 5 14 6 | 12 17 20 20 7 | 13 11 14 18 8 | 7 14 12 10 9 | 13 20 12 17 10 | 17 18 6 9 11 | 5 5 15 19 12 | 18 12 20 17 13 | 13 6 19 6 14 | 17 20 15 19 15 | 12 18 17 8 16 | 7 20 12 7 17 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E03/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_2/L04/E03/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E03/very_easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 2 1 2 2 3 | 3 2 3 3 4 | 6 2 2 3 5 | 6 4 4 3 6 | 4 3 7 4 7 | 6 5 9 7 -------------------------------------------------------------------------------- /Laboratori/s296525_2/L04/E03/very_very_easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 1 2 2 3 | 4 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L05/E01/att.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 2 3 | 2 4 4 | 2 5 5 | 3 5 6 | 5 7 7 | 6 8 8 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L05/E01/att1.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 0 6 3 | 1 4 4 | 3 5 5 | 3 8 6 | 4 7 7 | 5 9 8 | 6 10 9 | 8 11 -------------------------------------------------------------------------------- /Laboratori/s296525_2/L05/E01/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_2/L05/E01/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_2/L05/E02/board.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 0/0 -1/-1 2/0 3 | 3/1 -1/-1 -1/-1 4 | -1/-1 6/0 -1/-1 5 | 6 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L05/E02/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_2/L05/E02/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_2/L05/E02/tiles.txt: -------------------------------------------------------------------------------- 1 | 9 2 | A 3 B 2 3 | A 2 V 1 4 | A 2 V 2 5 | B 1 N 2 6 | A 3 G 3 7 | V 1 G 2 8 | R 1 G 6 9 | V 1 B 1 10 | V 11 B 3 11 | 12 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L06/E02/easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 15 2 | 5 7 4 10 3 | 6 8 10 1 4 | 3 1 6 10 5 | 4 4 2 1 6 | 7 2 4 10 7 | 8 8 4 6 8 | 6 1 4 4 9 | 8 3 6 4 10 | 7 7 4 2 11 | 1 3 7 1 12 | 10 10 9 10 13 | 8 8 8 6 14 | 9 6 10 5 15 | 6 10 9 5 16 | 9 6 9 9 17 | 18 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L06/E02/hard_test_set.txt: -------------------------------------------------------------------------------- 1 | 15 2 | 19 6 8 5 3 | 19 14 5 11 4 | 14 14 5 8 5 | 12 16 5 14 6 | 12 17 20 20 7 | 13 11 14 18 8 | 7 14 12 10 9 | 13 20 12 17 10 | 17 18 6 9 11 | 5 5 15 19 12 | 18 12 20 17 13 | 13 6 19 6 14 | 17 20 15 19 15 | 12 18 17 8 16 | 7 20 12 7 17 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L06/E02/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_2/L06/E02/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_2/L06/E02/very_easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 2 1 2 2 3 | 3 2 3 3 4 | 6 2 2 3 5 | 6 4 4 3 6 | 4 3 7 4 7 | 6 5 9 7 -------------------------------------------------------------------------------- /Laboratori/s296525_2/L06/E02/very_very_easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 1 2 2 3 | 4 | -------------------------------------------------------------------------------- /Laboratori/s296525_2/L06/E03/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_2/L06/E03/main.exe -------------------------------------------------------------------------------- /Laboratori/s296525_3/L07/E01/equipArray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_3/L07/E01/equipArray.exe -------------------------------------------------------------------------------- /Laboratori/s296525_3/L07/E01/gdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_3/L07/E01/gdr.exe -------------------------------------------------------------------------------- /Laboratori/s296525_3/L07/E01/pg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_3/L07/E01/pg.exe -------------------------------------------------------------------------------- /Laboratori/s296525_3/L07/E01/pgList.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_3/L07/E01/pgList.exe -------------------------------------------------------------------------------- /Laboratori/s296525_3/L08/E02/build/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_3/L08/E02/build/Debug/Item.o -------------------------------------------------------------------------------- /Laboratori/s296525_3/L08/E02/build/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s296525_3/L08/E02/build/Debug/main.o -------------------------------------------------------------------------------- /Laboratori/s296525_3/L08/E03/F1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | ABC001 4 3 | 2018/01/01 00:00 100 3 4 | 2018/01/01 00:01 78 1 5 | 2018/01/01 00:02 345 9 6 | 2018/01/01 00:03 13 1 7 | ABC002 2 8 | 2018/01/01 00:00 244 23 9 | 2018/01/01 00:01 190 56 10 | ABC003 1 11 | 2018/01/02 00:00 1 1 12 | -------------------------------------------------------------------------------- /Laboratori/s296525_3/L08/E03/F2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | ABC006 4 3 | 2018/01/03 00:00 100 3 4 | 2018/01/03 00:01 78 1 5 | 2018/01/03 00:02 345 9 6 | 2018/01/03 00:03 13 1 7 | ABC003 2 8 | 2018/01/03 00:00 244 23 9 | 2018/01/03 00:01 190 56 10 | ABC011 1 11 | 2018/01/06 00:00 1 1 12 | -------------------------------------------------------------------------------- /Laboratori/s296525_3/L09/E01/grafo1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | A 3 | B 4 | C 5 | D 6 | A B 1 7 | A C 1 8 | B C 1 9 | C D 1 10 | -------------------------------------------------------------------------------- /Laboratori/s296525_3/L09/E01/grafo2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | A 3 | B 4 | C 5 | D 6 | A B 34 7 | B C 90 8 | C D 5 9 | D A 4 10 | -------------------------------------------------------------------------------- /Laboratori/s296525_3/L09/E01/grafo3.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | A B 34 10 | A C 12 11 | A D 67 12 | A E 45 13 | A F 12 14 | B E 90 15 | B F 5 16 | C D 5 17 | C F 90 18 | D E 12 19 | D G 91 20 | E F 1 21 | E G 2 22 | F G 3 -------------------------------------------------------------------------------- /Laboratori/s296525_3/L09/E01/grafo4.txt: -------------------------------------------------------------------------------- 1 | 7 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | A B 34 10 | A C 12 11 | A D 67 12 | E A 45 13 | A F 12 14 | B E 90 15 | B F 5 16 | C D 5 17 | C F 90 18 | D E 12 19 | G D 91 20 | E F 1 21 | E G 2 22 | G F 3 23 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/download (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/download (1).png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/download (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/download (2).png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/download.png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/images (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/images (1).png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/images.jpeg -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/images.png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input-1-1-1536x1341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/input-1-1-1536x1341.png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input-2-1-1536x1341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/input-2-1-1536x1341.png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input0.txt: -------------------------------------------------------------------------------- 1 | 4 4 2 | 0 1 3 | 0 2 4 | 1 2 5 | 1 3 6 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input1.txt: -------------------------------------------------------------------------------- 1 | 5 4 2 | 0 2 3 | 2 4 4 | 1 4 5 | 3 4 6 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input10.txt: -------------------------------------------------------------------------------- 1 | 6 6 2 | 0 1 3 | 1 2 4 | 1 3 5 | 2 4 6 | 3 4 7 | 4 5 8 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input11.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 0 1 3 | 0 2 4 | 1 2 5 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input2.txt: -------------------------------------------------------------------------------- 1 | 7 6 2 | 2 0 3 | 0 1 4 | 1 3 5 | 3 4 6 | 4 5 7 | 5 6 8 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input3.txt: -------------------------------------------------------------------------------- 1 | 5 4 2 | 0 1 3 | 0 2 4 | 0 3 5 | 1 4 6 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input4.txt: -------------------------------------------------------------------------------- 1 | 4 3 2 | 1 3 3 | 0 3 4 | 2 3 5 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input5.txt: -------------------------------------------------------------------------------- 1 | 5 4 2 | 0 2 3 | 2 4 4 | 3 4 5 | 1 4 6 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input6.txt: -------------------------------------------------------------------------------- 1 | 8 11 2 | 0 1 3 | 0 3 4 | 0 5 5 | 1 2 6 | 1 3 7 | 2 4 8 | 2 7 9 | 3 6 10 | 4 7 11 | 5 6 12 | 6 7 13 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input7.txt: -------------------------------------------------------------------------------- 1 | 8 7 2 | 0 1 3 | 0 2 4 | 1 3 5 | 1 4 6 | 4 6 7 | 4 7 8 | 3 5 9 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input8.txt: -------------------------------------------------------------------------------- 1 | 5 6 2 | 0 1 3 | 0 2 4 | 1 2 5 | 1 4 6 | 2 3 7 | 3 4 8 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/input9.txt: -------------------------------------------------------------------------------- 1 | 8 8 2 | 0 1 3 | 0 3 4 | 1 4 5 | 1 2 6 | 2 5 7 | 2 7 8 | 2 6 9 | 4 5 10 | -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/vertex-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/vertex-cover.png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/E01/vertexcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/E01/vertexcover.png -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/Lab4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/Lab4.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/commento completo Lab04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/commento completo Lab04.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/commento parziale Lab04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/commento parziale Lab04.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/input files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/input files.zip -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L01/soluzioni Lab04.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L01/soluzioni Lab04.zip -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L02/Lab5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L02/Lab5.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L02/commento completo Lab05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L02/commento completo Lab05.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L02/commento parziale Lab05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L02/commento parziale Lab05.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L02/input files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L02/input files.zip -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L02/soluzioni Lab05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L02/soluzioni Lab05.zip -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L03/DynProg_extra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L03/DynProg_extra.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L03/Lab06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L03/Lab06.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L03/commento completo Lab06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L03/commento completo Lab06.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L03/commento parziale Lab06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L03/commento parziale Lab06.pdf -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L03/input files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L03/input files.zip -------------------------------------------------------------------------------- /Laboratori/s2993369_2/L03/soluzioni Lab06.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Laboratori/s2993369_2/L03/soluzioni Lab06.zip -------------------------------------------------------------------------------- /Liste/2.3.1 listastringhe/stringhe.txt: -------------------------------------------------------------------------------- 1 | ciao 2 | 3 | ragazzi 4 | 5 | come 6 | 7 | state 8 | -------------------------------------------------------------------------------- /Liste/ricorsioneEliste/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Liste/ricorsioneEliste/slides.pdf -------------------------------------------------------------------------------- /Priority Queues/PQIndex/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/Item.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/bin/Debug/PQIndex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/bin/Debug/PQIndex.exe -------------------------------------------------------------------------------- /Priority Queues/PQIndex/bin/Release/PQIndex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/bin/Release/PQIndex.exe -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Debug/Item.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Debug/PQ.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Debug/PQ.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Debug/ST.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Debug/main.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Release/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Release/Item.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Release/PQ.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Release/PQ.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Release/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Release/ST.o -------------------------------------------------------------------------------- /Priority Queues/PQIndex/obj/Release/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQIndex/obj/Release/main.o -------------------------------------------------------------------------------- /Priority Queues/PQItem/bin/Debug/PQ Item.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQItem/bin/Debug/PQ Item.exe -------------------------------------------------------------------------------- /Priority Queues/PQItem/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQItem/obj/Debug/Item.o -------------------------------------------------------------------------------- /Priority Queues/PQItem/obj/Debug/PQ.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQItem/obj/Debug/PQ.o -------------------------------------------------------------------------------- /Priority Queues/PQItem/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Priority Queues/PQItem/obj/Debug/main.o -------------------------------------------------------------------------------- /Symbol Tables/ST direct access table/bin/Debug/ST direct access table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST direct access table/bin/Debug/ST direct access table.exe -------------------------------------------------------------------------------- /Symbol Tables/ST direct access table/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST direct access table/obj/Debug/Item.o -------------------------------------------------------------------------------- /Symbol Tables/ST direct access table/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST direct access table/obj/Debug/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST direct access table/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST direct access table/obj/Debug/main.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted array/bin/Debug/ST sorted array.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted array/bin/Debug/ST sorted array.exe -------------------------------------------------------------------------------- /Symbol Tables/ST sorted array/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted array/obj/Debug/Item.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted array/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted array/obj/Debug/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted array/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted array/obj/Debug/main.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted list/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted list/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted list/bin/Debug/ST sorted list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted list/bin/Debug/ST sorted list.exe -------------------------------------------------------------------------------- /Symbol Tables/ST sorted list/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted list/obj/Debug/Item.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted list/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted list/obj/Debug/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST sorted list/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST sorted list/obj/Debug/main.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted array/bin/Debug/ST unsorted array.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted array/bin/Debug/ST unsorted array.exe -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted array/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted array/obj/Debug/Item.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted array/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted array/obj/Debug/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted array/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted array/obj/Debug/main.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted list/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted list/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted list/bin/Debug/ST unsorted list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted list/bin/Debug/ST unsorted list.exe -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted list/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted list/obj/Debug/Item.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted list/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted list/obj/Debug/ST.o -------------------------------------------------------------------------------- /Symbol Tables/ST unsorted list/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Symbol Tables/ST unsorted list/obj/Debug/main.o -------------------------------------------------------------------------------- /Symbol Tables/wq.txt: -------------------------------------------------------------------------------- 1 | sa 2 | -------------------------------------------------------------------------------- /Tree/BST/bin/Debug/BST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/BST/bin/Debug/BST.exe -------------------------------------------------------------------------------- /Tree/BST/obj/Debug/BST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/BST/obj/Debug/BST.o -------------------------------------------------------------------------------- /Tree/BST/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/BST/obj/Debug/Item.o -------------------------------------------------------------------------------- /Tree/BST/obj/Debug/ST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/BST/obj/Debug/ST.o -------------------------------------------------------------------------------- /Tree/BST/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/BST/obj/Debug/main.o -------------------------------------------------------------------------------- /Tree/IBST/bin/Debug/IBST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/IBST/bin/Debug/IBST.exe -------------------------------------------------------------------------------- /Tree/IBST/obj/Debug/IBST.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/IBST/obj/Debug/IBST.o -------------------------------------------------------------------------------- /Tree/IBST/obj/Debug/Item.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/IBST/obj/Debug/Item.o -------------------------------------------------------------------------------- /Tree/IBST/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/Tree/IBST/obj/Debug/main.o -------------------------------------------------------------------------------- /Tree/w.txt: -------------------------------------------------------------------------------- 1 | w 2 | -------------------------------------------------------------------------------- /asdslide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/asdslide.pdf -------------------------------------------------------------------------------- /complessita/Complessità.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/complessita/Complessità.pdf -------------------------------------------------------------------------------- /complessita/tutte-le-complessita-fondamentali-apa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/complessita/tutte-le-complessita-fondamentali-apa.pdf -------------------------------------------------------------------------------- /laboratoriAPA/AP1920_RegoleLab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/AP1920_RegoleLab.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab00/Lab00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab00/Lab00.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab01/Commento completo Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab01/Commento completo Lab01.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab01/Commento parziale Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab01/Commento parziale Lab01.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab01/Lab01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab01/Lab01.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab01/soluzioni Lab01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab01/soluzioni Lab01.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab01/soluzioni parziali Lab01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab01/soluzioni parziali Lab01.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab02/Commento completo Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab02/Commento completo Lab02.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab02/Commento parziale Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab02/Commento parziale Lab02.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab02/Lab02 con precisazione su esercizio 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab02/Lab02 con precisazione su esercizio 2.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab02/Lab02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab02/Lab02.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab02/soluzioni Lab02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab02/soluzioni Lab02.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab02/soluzioni parziali Lab02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab02/soluzioni parziali Lab02.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab03/Commento completo Lab03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab03/Commento completo Lab03.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab03/Lab03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab03/Lab03.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab03/soluzioni Lab03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab03/soluzioni Lab03.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab04/Commento parziale Lab04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab04/Commento parziale Lab04.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab04/Lab04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab04/Lab04.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab04/soluzioni Lab04.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab04/soluzioni Lab04.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab04/soluzioni parziali Lab04.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab04/soluzioni parziali Lab04.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab05/Commento completo Lab05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab05/Commento completo Lab05.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab05/Lab05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab05/Lab05.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab05/mat.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 1 2 3 3 | 4 5 6 4 | 7 8 9 -------------------------------------------------------------------------------- /laboratoriAPA/Lab05/soluzioni Lab05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab05/soluzioni Lab05.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab06/Commento completo Lab06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab06/Commento completo Lab06.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab06/Lab06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab06/Lab06.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab06/grafo.txt: -------------------------------------------------------------------------------- 1 | 4 4 2 | 0 1 3 | 0 2 4 | 1 2 5 | 1 3 6 | -------------------------------------------------------------------------------- /laboratoriAPA/Lab06/soluzioni Lab06.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab06/soluzioni Lab06.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/Commento completo Lab07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab07/Commento completo Lab07.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/Commento parziale Lab07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab07/Commento parziale Lab07.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/Lab07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab07/Lab07.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/e1_easy_test_set.txt: -------------------------------------------------------------------------------- 1 | 15 2 | 5 7 4 10 3 | 6 8 10 1 4 | 3 1 6 10 5 | 4 4 2 1 6 | 7 2 4 10 7 | 8 8 4 6 8 | 6 1 4 4 9 | 8 3 6 4 10 | 7 7 4 2 11 | 1 3 7 1 12 | 10 10 9 10 13 | 8 8 8 6 14 | 9 6 10 5 15 | 6 10 9 5 16 | 9 6 9 9 17 | 18 | -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/e1_hard_test_set.txt: -------------------------------------------------------------------------------- 1 | 15 2 | 19 6 8 5 3 | 19 14 5 11 4 | 14 14 5 8 5 | 12 16 5 14 6 | 12 17 20 20 7 | 13 11 14 18 8 | 7 14 12 10 9 | 13 20 12 17 10 | 17 18 6 9 11 | 5 5 15 19 12 | 18 12 20 17 13 | 13 6 19 6 14 | 17 20 15 19 15 | 12 18 17 8 16 | 7 20 12 7 17 | -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/soluzioni Lab07.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab07/soluzioni Lab07.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab07/soluzioni parziali Lab07.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab07/soluzioni parziali Lab07.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/Commento completo Lab08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab08/Commento completo Lab08.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/Commento parziale Lab08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab08/Commento parziale Lab08.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/Lab08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab08/Lab08.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/att.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 2 3 | 2 4 4 | 2 5 5 | 3 5 6 | 5 7 7 | 6 8 8 | -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/board.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 0/0 -1/-1 2/0 3 | 3/1 -1/-1 -1/-1 4 | -1/-1 6/0 -1/-1 5 | 6 | -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/soluzioni Lab08.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab08/soluzioni Lab08.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/soluzioni parziali Lab08.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab08/soluzioni parziali Lab08.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab08/tiles.txt: -------------------------------------------------------------------------------- 1 | 9 2 | A 3 B 2 3 | A 2 V 1 4 | A 2 V 2 5 | B 1 N 2 6 | A 3 G 3 7 | V 1 G 2 8 | R 1 G 6 9 | V 1 B 1 10 | V 11 B 3 11 | 12 | -------------------------------------------------------------------------------- /laboratoriAPA/Lab09/Commento completo Lab09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab09/Commento completo Lab09.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab09/E2incompleto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab09/E2incompleto.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab09/Lab09 es 0 con correzioni e precisazioni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab09/Lab09 es 0 con correzioni e precisazioni.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab09/Lab09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab09/Lab09.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab09/soluzioni Lab09.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab09/soluzioni Lab09.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab10/Commento completo Lab10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab10/Commento completo Lab10.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab10/Commento parziale Lab10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab10/Commento parziale Lab10.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab10/Lab10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab10/Lab10.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab10/input files (aggiornato 02_01_2020).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab10/input files (aggiornato 02_01_2020).zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab10/soluzioni Lab10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab10/soluzioni Lab10.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab10/soluzioni parziali Lab10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab10/soluzioni parziali Lab10.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab11/Commento completo Lab11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab11/Commento completo Lab11.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab11/Lab11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab11/Lab11.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab11/input files (aggiornato 10_01_2020).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab11/input files (aggiornato 10_01_2020).zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab11/soluzioni Lab11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab11/soluzioni Lab11.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab12/Commento completo Lab12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab12/Commento completo Lab12.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab12/Lab12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab12/Lab12.pdf -------------------------------------------------------------------------------- /laboratoriAPA/Lab12/input files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab12/input files.zip -------------------------------------------------------------------------------- /laboratoriAPA/Lab12/soluzioni Lab12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Lab12/soluzioni Lab12.zip -------------------------------------------------------------------------------- /laboratoriAPA/Tracce_esercizi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/laboratoriAPA/Tracce_esercizi.pdf -------------------------------------------------------------------------------- /ordinamento/RecursiveSort/RecursiveSorting.h: -------------------------------------------------------------------------------- 1 | void MergeSort(Item *A, int N); 2 | void BottomUpMergeSort(Item *A, int N); 3 | void QuickSort(Item *A, int N); 4 | -------------------------------------------------------------------------------- /partizionamentoEadt/3.1.1 catalogo/catalogo.txt: -------------------------------------------------------------------------------- 1 | 6 2 | cod000003 white smalto 5.50 2 7/11/2016 3 | cod000005 red rossetto 4.50 5 7/11/2016 4 | cod000004 green smalto 3.50 7 7/11/2016 5 | cod000001 pink rossetto 6.50 6 7/11/2016 6 | cod000000 blue smalto 2.50 3 7/11/2016 7 | cod000002 brown rossetto 7.50 1 7/11/2016 -------------------------------------------------------------------------------- /partizionamentoEadt/3.1.2 catalogoesteso/catalogo.txt: -------------------------------------------------------------------------------- 1 | 6 2 | cod000003 white smalto 5.50 2 7/11/2016 3 | cod000005 red rossetto 4.50 5 7/11/2016 4 | cod000004 green smalto 3.50 7 7/11/2016 5 | cod000001 pink rossetto 6.50 6 7/11/2016 6 | cod000000 blue smalto 2.50 3 7/11/2016 7 | cod000002 brown rossetto 7.50 1 7/11/2016 -------------------------------------------------------------------------------- /partizionamentoEadt/3.1.3 atleti/atleti.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A0001 Rossi Francesco ACRO_12_18 10/07/2000 12 3 | A0002 Verdi Marco GAM_L4 02/12/1999 11 4 | A0003 Bianchi Valeria GAF_GOLD 20/02/1997 16 5 | A0004 Neri Andrea GAM_OPEN 21/06/1995 13 6 | A0005 Rossi Sara ACRO_12_18 11/12/2003 10 7 | -------------------------------------------------------------------------------- /partizionamentoEadt/3.1.4 atletiliste/atleti.txt: -------------------------------------------------------------------------------- 1 | 5 2 | A0001 Rossi Francesco ACRO_12_18 10/07/2000 12 3 | A0002 Verdi Marco GAM_L4 02/12/1999 11 4 | A0003 Bianchi Valeria GAF_GOLD 20/02/1997 16 5 | A0004 Neri Andrea GAM_OPEN 21/06/1995 13 6 | A0005 Rossi Sara ACRO_12_18 11/12/2003 10 7 | -------------------------------------------------------------------------------- /partizionamentoEadt/3.2.1 atletipianomultifile/A0001.txt: -------------------------------------------------------------------------------- 1 | vinyasa 1 10 2 | lunge_hops 2 30 3 | v_up 3 15 4 | side_plank_in_out 4 20 5 | inchworm 1 10 6 | staccata_frontale 2 1 7 | staccata_sagittale 1 1 8 | child_pose 1 1 -------------------------------------------------------------------------------- /partizionamentoEadt/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/partizionamentoEadt/slides.pdf -------------------------------------------------------------------------------- /programmazione dinamica & greedy/06knapsack/Item.h: -------------------------------------------------------------------------------- 1 | #ifndef ITEM_H 2 | #define ITEM_H 3 | 4 | #include 5 | #define MAXC 11 6 | 7 | typedef struct { char name[MAXC]; int size; int value;} Item; 8 | 9 | Item ITEMscan(); 10 | void ITEMstore(Item val); 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /programmazione dinamica & greedy/09knapsackM/Item.h: -------------------------------------------------------------------------------- 1 | #ifndef ITEM_H 2 | #define ITEM_H 3 | 4 | #include 5 | #define MAXC 11 6 | 7 | typedef struct { char name[MAXC]; int size; int value;} Item; 8 | 9 | Item ITEMscan(); 10 | void ITEMstore(Item val); 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /programmazione dinamica & greedy/Codice C per 05 La programmazione dinamica/06knapsack/Item.h: -------------------------------------------------------------------------------- 1 | #ifndef ITEM_H 2 | #define ITEM_H 3 | 4 | #include 5 | #define MAXC 11 6 | 7 | typedef struct { char name[MAXC]; int size; int value;} Item; 8 | 9 | Item ITEMscan(); 10 | void ITEMstore(Item val); 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /programmazione dinamica & greedy/Codice C per 05 La programmazione dinamica/09knapsackM/Item.h: -------------------------------------------------------------------------------- 1 | #ifndef ITEM_H 2 | #define ITEM_H 3 | 4 | #include 5 | #define MAXC 11 6 | 7 | typedef struct { char name[MAXC]; int size; int value;} Item; 8 | 9 | Item ITEMscan(); 10 | void ITEMstore(Item val); 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /programmazione dinamica & greedy/equilibrio/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/programmazione dinamica & greedy/equilibrio/slides.pdf -------------------------------------------------------------------------------- /prototipi/Elenco funzioni C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/prototipi/Elenco funzioni C.pdf -------------------------------------------------------------------------------- /ricorsione/2_2_1_Fattoriale.c: -------------------------------------------------------------------------------- 1 | long fact(int n) { 2 | 3 | if(n == 0) 4 | return(1); 5 | else 6 | return(n * fact(n-1)); 7 | } 8 | -------------------------------------------------------------------------------- /ricorsione/2_2_2_fibonacci.c: -------------------------------------------------------------------------------- 1 | long fib(int n) { 2 | if(n == 0 || n == 1) 3 | return(n); 4 | 5 | return(fib(n-2) + fib(n-1)); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /ricorsione/2_2_3_MCD.c: -------------------------------------------------------------------------------- 1 | int gcd(int m, int n) { 2 | if(n == 0) 3 | return(m); 4 | return gcd(n, m % n); 5 | } 6 | -------------------------------------------------------------------------------- /ricorsione/2_2_4_Max.c: -------------------------------------------------------------------------------- 1 | int max( int *a, int l, int r) { 2 | int u, v ; 3 | int m = (l + r)/2 ; 4 | 5 | if (l == r) 6 | return a[l] ; 7 | 8 | u = max (a, l, m); 9 | v = max (a, m+1, r); 10 | 11 | if (u > v) 12 | return u; 13 | else 14 | return v; 15 | } 16 | -------------------------------------------------------------------------------- /ricorsione/2_3_3_Liste.c: -------------------------------------------------------------------------------- 1 | typedef struct node *link; 2 | struct node { int item; link next; }; 3 | 4 | -------------------------------------------------------------------------------- /ricorsione/2_5_FattorialeTR.c: -------------------------------------------------------------------------------- 1 | long fact_tr(int n, long f) { 2 | if(n == 0) 3 | return f; 4 | return fact_tr(n-1, n*f); 5 | } 6 | -------------------------------------------------------------------------------- /ricorsione/Triangoloenumeribinari/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/ricorsione/Triangoloenumeribinari/slides.pdf -------------------------------------------------------------------------------- /ricorsione/countdigit.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int countdigit(int n); 4 | 5 | int main(){ 6 | int n=123,res; 7 | res=countdigit(n); 8 | printf("%d ",res); 9 | return 0; 10 | } 11 | 12 | int countdigit(int n){ 13 | if(n==0) return 0; 14 | return countdigit(n/10)+1; 15 | } 16 | -------------------------------------------------------------------------------- /ricorsione/potenzaconnumeriinteri.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int potenza(int n,int k); 4 | 5 | int main(){ 6 | int n=3,k=4,res; 7 | res=potenza(n,k); 8 | printf("%d\n ",res); 9 | return 0; 10 | } 11 | 12 | int potenza(int n,int k){ 13 | if(k==1) return n; 14 | return potenza(n,k-1)*n; 15 | } 16 | -------------------------------------------------------------------------------- /ricorsione/powinternumb.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int potenza(int n,int k); 4 | 5 | int main(){ 6 | int n=3,k=4,res; 7 | res=potenza(n,k); 8 | printf("%d\n ",res); 9 | return 0; 10 | } 11 | 12 | int potenza(int n,int k){ 13 | if(k==1) return n; 14 | return potenza(n,k-1)*n; 15 | } 16 | -------------------------------------------------------------------------------- /ricorsione/sumdigit.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int sumdigit(int n); 4 | 5 | int main(){ 6 | int n=19,res; 7 | res=sumdigit(n); 8 | printf("%d ",res); 9 | return 0; 10 | } 11 | 12 | int sumdigit(int n){ 13 | if(n==0) return n%10; 14 | return(sumdigit(n/10)+n%10); 15 | } 16 | -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/skilift/BST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2015/Appello 3/skilift/BST.h -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/skilift/ST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2015/Appello 3/skilift/ST.h -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/skilift/altrerisoluzioni.txt: -------------------------------------------------------------------------------- 1 | https://github.com/search?p=3&q=skiliftId+language%3AC&type=Code 2 | -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/skilift/skier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2015/Appello 3/skilift/skier.h -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/skilift/skilift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2015/Appello 3/skilift/skilift.c -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/skilift/skilift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2015/Appello 3/skilift/skilift.h -------------------------------------------------------------------------------- /temidiesame/12punti/2015/Appello 3/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2015/Appello 3/slides.pdf -------------------------------------------------------------------------------- /temidiesame/12punti/2020/programmazione12punti28Gennaio2020.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2020/programmazione12punti28Gennaio2020.jpeg -------------------------------------------------------------------------------- /temidiesame/12punti/2022/appello1/220127_Commento.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2022/appello1/220127_Commento.pdf -------------------------------------------------------------------------------- /temidiesame/12punti/2023/20230207/es2/T.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | 5 | typedef struct tree *T; 6 | 7 | int f(T t); 8 | T init(); 9 | void initTreeNode(T t); 10 | 11 | -------------------------------------------------------------------------------- /temidiesame/12punti/2023/20230207/es3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/12punti/2023/20230207/es3.c -------------------------------------------------------------------------------- /temidiesame/12punti/2023/20230221/es2/List.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | typedef struct LIST_L *LIST; 4 | 5 | 6 | LIST init(); 7 | void insertList(LIST l,int n); 8 | void printList(LIST l); 9 | void f(LIST l,int a,int b); 10 | -------------------------------------------------------------------------------- /temidiesame/12punti/2023/20230630/es2/List.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | typedef struct LIST_L *LIST; 4 | 5 | LIST init(); 6 | void insertList(LIST l,int n); 7 | void printList(LIST l); 8 | void f(LIST l); 9 | -------------------------------------------------------------------------------- /temidiesame/12punti/2023/20230920/es2/List.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | typedef struct LIST_L *LIST; 4 | 5 | LIST init(); 6 | void insertList(LIST l); 7 | void printList(LIST l); 8 | void f(LIST l,int k); 9 | -------------------------------------------------------------------------------- /temidiesame/12punti/2023/appello1/es2/T.h: -------------------------------------------------------------------------------- 1 | #ifndef UNTITLED1_T_H 2 | #define UNTITLED1_T_H 3 | #include 4 | #include 5 | typedef struct tree *TREE; 6 | 7 | int f(TREE t); 8 | TREE init(); 9 | 10 | #endif //UNTITLED1_T_H 11 | -------------------------------------------------------------------------------- /temidiesame/12punti/e.txt: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /temidiesame/18punti/2014/24Febbraio - Grafi regolare e cammini massimi/Tema esame 2014_02_24/GRAFO.txt: -------------------------------------------------------------------------------- 1 | A 3 Bb 2 | Bb 2 CcC 3 | A 4 dDd 4 | CcC 1 dDd -------------------------------------------------------------------------------- /temidiesame/18punti/2014/3Settembre - progetto di Rete/Tema esame 2014_09_03/Queue.h: -------------------------------------------------------------------------------- 1 | #ifndef QUEUE_H 2 | #define QUEUE_H 3 | 4 | typedef struct queue *Q; 5 | 6 | Q Qinit(); 7 | void Qfree(Q q); 8 | int Qempty(Q q); 9 | void Qput (Q q, int e); 10 | int Qget(Q q); 11 | 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /temidiesame/18punti/2014/3Settembre - progetto di Rete/Tema esame 2014_09_03/arco.c: -------------------------------------------------------------------------------- 1 | #include "arco.h" 2 | 3 | Edge EDGEcreate(int id1, int id2){ 4 | Edge e; 5 | e.v=id1; 6 | e.w=id2; 7 | return e; 8 | } 9 | -------------------------------------------------------------------------------- /temidiesame/18punti/2014/3Settembre - progetto di Rete/Tema esame 2014_09_03/arco.h: -------------------------------------------------------------------------------- 1 | #ifndef ARCO_H_INCLUDED 2 | #define ARCO_H_INCLUDED 3 | 4 | typedef struct{ 5 | int v, w; 6 | }Edge; 7 | 8 | Edge EDGEcreate(int id1, int id2); 9 | 10 | #endif // ARCO_H_INCLUDED 11 | -------------------------------------------------------------------------------- /temidiesame/18punti/2014/3Settembre - progetto di Rete/Tema esame 2014_09_03/grafo.txt: -------------------------------------------------------------------------------- 1 | nodoA 2 | nodoB 3 | nodoC 4 | nodoD -------------------------------------------------------------------------------- /temidiesame/18punti/2014/3Settembre - progetto di Rete/Tema esame 2014_09_03/proposta.txt: -------------------------------------------------------------------------------- 1 | nodoA nodoC 2 | nodoA nodoD 3 | nodoB nodoC 4 | nodoB nodoD -------------------------------------------------------------------------------- /temidiesame/18punti/2014/Tema esame 2014_06_27/FIAT_modelli.txt: -------------------------------------------------------------------------------- 1 | Cinquecento accessori.txt 2 | Panda accessori.txt 3 | CinquecentoL accessori.txt 4 | Punto accessori.txt -------------------------------------------------------------------------------- /temidiesame/18punti/2014/Tema esame 2014_06_27/Renault_modelli.txt: -------------------------------------------------------------------------------- 1 | Clio accessori.txt 2 | Twingo accessori.txt 3 | Megane accessori.txt 4 | Scenic accessori.txt -------------------------------------------------------------------------------- /temidiesame/18punti/2014/Tema esame 2014_06_27/accessori.txt: -------------------------------------------------------------------------------- 1 | Barre_portasurf 150.00 2 | Spoiler 220.50 3 | Cerchi_lega 75.25 4 | Vivavoce 450.50 5 | Sensori_parcheggio 700.50 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2014/Tema esame 2014_06_27/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2014/Tema esame 2014_06_27/main.c -------------------------------------------------------------------------------- /temidiesame/18punti/2014/Tema esame 2014_06_27/produttori.txt: -------------------------------------------------------------------------------- 1 | FIAT FIAT_modelli.txt 2 | Renault Renault_modelli.txt -------------------------------------------------------------------------------- /temidiesame/18punti/2015/23Febbraio - Cammino massimo con cicli/Tema esame 2015_02_23/cammini.txt: -------------------------------------------------------------------------------- 1 | 4 2 | A0 fF 123 d1 xd 3 | 5 4 | A0 h9 123 F2 d1 Dd -------------------------------------------------------------------------------- /temidiesame/18punti/2015/23Febbraio - Cammino massimo con cicli/Tema esame 2015_02_23/grafo.txt: -------------------------------------------------------------------------------- 1 | fF 1 123 2 | A0 2 fF 3 | A0 5 h9 4 | h9 3 123 5 | 123 2 F2 6 | 123 4 d1 7 | F2 3 Dd 8 | F2 4 d1 9 | d1 2 Dd 10 | d1 4 xd 11 | d1 1 h9 12 | Dd 5 xd 13 | xd 4 A0 14 | F2 3 fF 15 | -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Febbraio - Regali di Natale/Tema esame 2015_02_02/grafo.txt: -------------------------------------------------------------------------------- 1 | Diego Emilia 2 | Claudia Emilia 3 | Bartolo Claudia 4 | Claudia Diego 5 | Bartolo Diego 6 | Andrea Claudia 7 | Claudia Fabio 8 | Andrea Bartolo 9 | Diego Fabio -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Febbraio - Regali di Natale/Tema esame 2015_02_02/regali.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | Claudia 4 | 2 5 | Andrea 6 | Diego 7 | 2 8 | Bartolo 9 | Emilia 10 | 1 11 | Fabio -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Settembre - Nonogram (x)/Tema esame 2015_09_02/gruppi.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 1 3 | 1 2 4 | 1 3 5 | 1 3 6 | 2 1 3 7 | 5 8 | 2 2 1 9 | 1 1 10 | 1 3 11 | 1 3 12 | 1 3 13 | -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Settembre - Nonogram (x)/Tema esame 2015_09_02/proposta.txt: -------------------------------------------------------------------------------- 1 | 1 0 0 0 0 2 | 1 1 0 0 0 3 | 0 0 1 1 1 4 | 0 0 1 1 1 5 | 1 0 1 1 1 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Settembre - Nonogram (x)/Tema esame 2015_09_02/soluzione.txt: -------------------------------------------------------------------------------- 1 | 1 0 0 0 0 2 | 1 1 0 0 0 3 | 0 0 1 1 1 4 | 0 0 1 1 1 5 | 1 0 1 1 1 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Settembre - Nonogram (x)/file.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 1 3 | 1 2 4 | 1 3 5 | 1 3 6 | 2 1 3 7 | 5 8 | 2 2 1 9 | 1 1 10 | 1 3 11 | 1 3 12 | 1 3 -------------------------------------------------------------------------------- /temidiesame/18punti/2015/2Settembre - Nonogram (x)/soluzione.txt: -------------------------------------------------------------------------------- 1 | 5 5 2 | 1 0 0 0 0 3 | 1 1 0 0 0 4 | 0 0 1 1 1 5 | 0 0 1 1 1 6 | 1 0 1 1 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2015/Tema esame 2015_06_16/autorizzazioni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2015/Tema esame 2015_06_16/autorizzazioni.h -------------------------------------------------------------------------------- /temidiesame/18punti/2015/Tema esame 2015_06_16/skilifts.txt: -------------------------------------------------------------------------------- 1 | S001 15 2 | S002 30 3 | S003 20 4 | -------------------------------------------------------------------------------- /temidiesame/18punti/2016/22febbraio - Grafo Colorato/main.c: -------------------------------------------------------------------------------- 1 | /* main.c 2 | * @author : Gabriele Iurlaro 3 | * @ site : http://iurlaro.com 4 | * @Modified: 22/12/2020, 19:43:08 5 | */ 6 | #include 7 | #include 8 | 9 | 10 | int main(int argc, char **argv){ 11 | FILE *in; 12 | } -------------------------------------------------------------------------------- /temidiesame/18punti/2016/26Gennaio - Via Emilia/Tema esame 2016_01_26/citta.txt: -------------------------------------------------------------------------------- 1 | 11 2 | Piacenza 102 0 3 | Fidenza 27 35 4 | Parma 190 57 5 | ReggioEmilia 171 83 6 | Modena 185 115 7 | Bologna 386 144 8 | Imola 69 177 9 | Faenza 58 193 10 | Forli' 118 207 11 | Cesena 97 225 12 | Rimini 147 253 -------------------------------------------------------------------------------- /temidiesame/18punti/2016/26Gennaio - Via Emilia/Tema esame 2016_01_26/proposta1.txt: -------------------------------------------------------------------------------- 1 | Piacenza 102 0 2 | ReggioEmilia 171 83 3 | Imola 69 177 4 | Cesena 97 225 -------------------------------------------------------------------------------- /temidiesame/18punti/2016/26Gennaio - Via Emilia/Tema esame 2016_01_26/proposta2.txt: -------------------------------------------------------------------------------- 1 | Fidenza 27 35 2 | Modena 185 115 3 | Faenza 58 193 4 | Rimini 147 253 -------------------------------------------------------------------------------- /temidiesame/18punti/2016/9Settembre - Insiemi indipendenti/Tema esame 2016_09_09/grafo.txt: -------------------------------------------------------------------------------- 1 | A B 2 | A C 3 | B D 4 | B E 5 | C E 6 | C F 7 | D E 8 | E F -------------------------------------------------------------------------------- /temidiesame/18punti/2016/9Settembre - Insiemi indipendenti/Tema esame 2016_09_09/proposta.txt: -------------------------------------------------------------------------------- 1 | D 2 | F 3 | 4 | 5 | -------------------------------------------------------------------------------- /temidiesame/18punti/2016/Tema esame 2016_06_14/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2016/Tema esame 2016_06_14/main.c -------------------------------------------------------------------------------- /temidiesame/18punti/2016/Tema esame 2016_06_14/ordine.txt: -------------------------------------------------------------------------------- 1 | 4 2 | P001 4 3 | P002 4 4 | P003 4 5 | P004 4 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2018/13Febbraio - Grafi e connessione/Tema esame 2018_02_13/grafo.txt: -------------------------------------------------------------------------------- 1 | 8 2 | A 1 3 3 | B 1.60 -1 4 | C 0 0.5 5 | D 1.75 2.80 6 | E 3.40 1.15 7 | F -3 2 8 | G 1 4 9 | H 4 2 10 | A B 11 | A D 12 | A E 13 | C D 14 | F G -------------------------------------------------------------------------------- /temidiesame/18punti/2018/13Febbraio - Grafi e connessione/Tema esame 2018_02_13/sol1.txt: -------------------------------------------------------------------------------- 1 | A G 2 | A H -------------------------------------------------------------------------------- /temidiesame/18punti/2018/13Febbraio - Grafi e connessione/Tema esame 2018_02_13/sol2.txt: -------------------------------------------------------------------------------- 1 | G H 2 | H E -------------------------------------------------------------------------------- /temidiesame/18punti/2018/13Febbraio - Grafi e connessione/queue.c: -------------------------------------------------------------------------------- 1 | /* queue.c 2 | * @author : Gabriele Iurlaro 3 | * @ site : http://iurlaro.com 4 | * @Modified: 22/12/2020, 19:45:36 5 | */ 6 | // 7 | // Created by gabbi on 20/01/2020. 8 | // 9 | 10 | #include "queue.h" 11 | -------------------------------------------------------------------------------- /temidiesame/18punti/2018/21Giugno - Tessere/board.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 0/0 -1/-1 2/0 3 | 3/1 -1/-1 -1/-1 4 | -1/-1 6/0 -1/-1 5 | 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2018/21Giugno - Tessere/tiles.txt: -------------------------------------------------------------------------------- 1 | 9 2 | A 3 B 2 3 | A 2 V 1 4 | A 2 V 2 5 | B 1 N 2 6 | A 3 G 3 7 | V 1 G 2 8 | R 1 G 6 9 | V 1 B 1 10 | V 11 B 3 11 | 12 | -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/Tema esame 2019_08_18/corretto.txt: -------------------------------------------------------------------------------- 1 | Risorsa 1: (2, 1) 2 | Risorsa 2: (4, 4) 3 | 0 0 0 0 0 4 | 1 # 1 0 # 5 | 1 1 1 1 2 6 | 1 1 # 2 2 7 | 0 1 0 # 2 8 | 0 0 0 2 2 9 | -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/Tema esame 2019_08_18/mappa.txt: -------------------------------------------------------------------------------- 1 | 6 5 2 | 1 1 3 | 1 4 4 | 3 2 5 | 4 3 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/Tema esame 2019_08_18/proposta.txt: -------------------------------------------------------------------------------- 1 | 2 2 2 | 2 1 3 | 4 4 4 | 0 1 0 0 0 5 | 1 1 1 0 0 6 | 1 1 1 1 2 7 | 1 1 1 2 2 8 | 0 1 0 2 2 9 | 0 0 0 2 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/Tema esame 2019_08_18/proposta1.txt: -------------------------------------------------------------------------------- 1 | 2 2 2 | 2 1 3 | 4 4 4 | 0 0 0 0 0 5 | 1 0 1 0 0 6 | 1 1 1 1 2 7 | 1 1 0 2 2 8 | 0 1 0 0 2 9 | 0 0 0 2 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/Tema esame 2019_08_18/risorsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/Tema esame 2019_08_18/risorsa.h -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/mappa.txt: -------------------------------------------------------------------------------- 1 | 6 5 2 | 1 1 3 | 1 4 4 | 3 2 5 | 4 3 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/18Settembre - posizione di risorse (x)/proposta.txt: -------------------------------------------------------------------------------- 1 | 2 2 2 | 2 1 3 | 4 4 4 | 0 1 0 0 0 5 | 1 1 1 0 0 6 | 1 1 1 1 2 7 | 1 1 1 2 2 8 | 0 1 0 2 2 9 | 0 0 0 2 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/22Febbraio - Azienda(x)/Tema esame 2019_02_22/divisioni.txt: -------------------------------------------------------------------------------- 1 | 2 2 | D001 3 | 1 40 70 4 | 1 30 60 5 | 1 50 80 6 | 1 60 90 7 | D002 8 | 1 20 60 9 | 1 10 50 10 | 1 30 70 11 | 1 40 80 12 | 13 | -------------------------------------------------------------------------------- /temidiesame/18punti/2019/22Febbraio - Azienda(x)/Tema esame 2019_02_22/output.txt: -------------------------------------------------------------------------------- 1 | D001 5678 o 2 | D001 8765 t 3 | D001 1324 i 4 | D001 4231 a 5 | D002 1234 i 6 | D002 4321 a 7 | D002 5768 t 8 | D002 8675 o 9 | -------------------------------------------------------------------------------- /temidiesame/18punti/2019/22Febbraio - Azienda(x)/Tema esame 2019_02_22/proposta.txt: -------------------------------------------------------------------------------- 1 | 8 2 | 8765 o D001 3 | 4321 a D001 4 | 5678 t D001 5 | 1234 i D001 6 | 1324 o D002 7 | 5768 a D002 8 | 4231 t D002 9 | 8675 i D002 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/22Febbraio - Azienda(x)/dipendente.c: -------------------------------------------------------------------------------- 1 | /* dipendente.c 2 | * @author : Gabriele Iurlaro 3 | * @ site : http://iurlaro.com 4 | * @Modified: 22/12/2020, 19:47:05 5 | */ 6 | // 7 | // Created by gabbi on 12/01/2020. 8 | // 9 | 10 | #include "dipendente.h" 11 | -------------------------------------------------------------------------------- /temidiesame/18punti/2019/2Luglio - Stazioni di ricarica (x)/Tema esame 2019_07_02/distanze.txt: -------------------------------------------------------------------------------- 1 | 0 8 10 7 12 2 | 8 0 7 9 11 3 | 10 7 0 10 9 4 | 7 9 10 0 8 5 | 12 11 9 8 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/2Luglio - Stazioni di ricarica (x)/Tema esame 2019_07_02/popolazione.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 15 5 50 30 25 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/2Luglio - Stazioni di ricarica (x)/Tema esame 2019_07_02/proposta.txt: -------------------------------------------------------------------------------- 1 | 2 8 2 | 1 3 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/2Luglio - Stazioni di ricarica (x)/Tema esame 2019_07_02/stazioniComune.txt: -------------------------------------------------------------------------------- 1 | 1 1 4 3 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2019/31Gennaio - Kernel/Tema esame 2019_01_31/grafo.txt: -------------------------------------------------------------------------------- 1 | b a 2 | a d 3 | a e 4 | d c 5 | e c 6 | d g 7 | d f 8 | e g 9 | e h 10 | h g -------------------------------------------------------------------------------- /temidiesame/18punti/2019/31Gennaio - Kernel/Tema esame 2019_01_31/kernel.txt: -------------------------------------------------------------------------------- 1 | b 2 | d 3 | e -------------------------------------------------------------------------------- /temidiesame/18punti/2020/28Gennaio - K-Core j-Edge-connected/Tema esame 2020_01_28/grafo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2020/28Gennaio - K-Core j-Edge-connected/Tema esame 2020_01_28/grafo.c -------------------------------------------------------------------------------- /temidiesame/18punti/2020/28Gennaio - K-Core j-Edge-connected/Tema esame 2020_01_28/grafo1.txt: -------------------------------------------------------------------------------- 1 | 8 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | G 9 | H 10 | A B 11 | A C 12 | A D 13 | B C 14 | B D 15 | B E 16 | C D 17 | D G 18 | E G 19 | E F 20 | E H 21 | F G 22 | F H 23 | G H 24 | -------------------------------------------------------------------------------- /temidiesame/18punti/2020/Tema esame 2020_06_22/fatto.txt: -------------------------------------------------------------------------------- 1 | H D P M 2 | E ALGORITMI DFS 3 | A T I I T 4 | PROGRAMMAZIONE 5 | S R T A 6 | O HASHTABLE M 7 | R F R S MAIN 8 | TIPO LISTA C 9 | Q E STACK -------------------------------------------------------------------------------- /temidiesame/18punti/2020/Tema esame 2020_06_22/schema.txt: -------------------------------------------------------------------------------- 1 | 9 15 18 2 | 8 0 0 V 3 | 4 0 2 V 4 | 4 0 6 V 5 | 3 0 14 V 6 | 9 1 2 O 7 | 3 1 12 O 8 | 8 1 12 V 9 | 14 3 0 O 10 | 5 3 3 V 11 | 4 3 10 V 12 | 9 5 2 O 13 | 4 5 6 V 14 | 3 5 8 V 15 | 4 6 10 O 16 | 4 7 0 O 17 | 5 7 5 O 18 | 2 7 2 V 19 | 5 8 10 O -------------------------------------------------------------------------------- /temidiesame/18punti/2020/Tema esame 2020_09_03/griglia.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 1 5 0 3 | 0 0 0 4 | 0 0 0 5 | 6 | 7 | -------------------------------------------------------------------------------- /temidiesame/18punti/2020/Tema esame 2020_09_03/proposta.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 1 5 1 3 | 5 5 5 4 | 5 2 2 5 | 6 | 7 | -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_01_26/dungeon.txt: -------------------------------------------------------------------------------- 1 | 4 2 | Ingresso 0 0 0 3 | Stanza1 1 0 10 4 | Stanza2 2 5 1 5 | Stanza3 3 0 5 6 | Ingresso Stanza1 0 7 | Stanza1 Stanza2 0 8 | Stanza1 Stanza3 1 9 | Stanza2 Stanza3 1 10 | -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_01_26/path.txt: -------------------------------------------------------------------------------- 1 | 5 2 | Ingresso 3 | Stanza1 4 | Stanza2 5 | Stanza3 6 | Stanza1 7 | -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_02_16/argomento.c: -------------------------------------------------------------------------------- 1 | #include "argomento.h" 2 | #include 3 | 4 | Argomento ARGOMENTOcrea(char *nome){ 5 | Argomento a; 6 | strcpy(a.nome, nome); 7 | return a; 8 | } 9 | -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_02_16/argomento.h: -------------------------------------------------------------------------------- 1 | #ifndef ARGOMENTO_H_INCLUDED 2 | #define ARGOMENTO_H_INCLUDED 3 | 4 | #define CAR 200 5 | 6 | typedef struct{ 7 | char nome[CAR]; 8 | }Argomento; 9 | 10 | Argomento ARGOMENTOcrea(char *nome); 11 | 12 | #endif // ARGOMENTO_H_INCLUDED 13 | -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_02_16/articoli.txt: -------------------------------------------------------------------------------- 1 | 3 2 | Paper1 Speaker1 2 Topic1 3 | Paper2 Speaker1 1 Topic1 4 | Paper3 Speaker2 3 Topic2 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_02_16/proposta.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 0 2 3 | 1 3 1 4 | 0 0 3 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_06_15/magazzino.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 0 3 | 2 4 | S001 5 | S002 6 | 1 7 | 1 8 | S003 9 | 2 10 | 3 11 | S004 12 | S005 13 | S006 14 | 3 15 | 1 16 | S007 17 | 4 18 | 1 19 | S008 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_06_15/pacchi.txt: -------------------------------------------------------------------------------- 1 | P001 2 | P010 3 | P009 4 | P006 5 | P007 6 | P002 7 | P003 8 | P008 9 | P004 10 | P005 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_09_01/cicli.txt: -------------------------------------------------------------------------------- 1 | 4 0 5 4 1 2 | 3 0 5 3 3 | 2 0 5 4 | 4 0 2 4 1 5 | 3 1 2 4 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_09_01/grafo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2021/Tema esame 2021_09_01/grafo.c -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_09_01/grafo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2021/Tema esame 2021_09_01/grafo.o -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_09_01/grafo.txt: -------------------------------------------------------------------------------- 1 | 6 10 2 | 0 2 3 | 0 5 4 | 1 0 5 | 1 2 6 | 2 4 7 | 3 0 8 | 4 1 9 | 5 0 10 | 5 3 11 | 5 4 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/Tema esame 2021_09_01/verifica.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 0 5 4 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2021/e.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_01_27/proposta_ko_bianco.txt: -------------------------------------------------------------------------------- 1 | 0 2 7 7 2 | 0 11 1 1 3 | 1 0 1 1 4 | 1 9 3 3 5 | 2 0 2 2 6 | 4 0 2 2 7 | 4 9 3 3 8 | 6 0 2 2 9 | 7 2 1 1 10 | 7 3 1 1 11 | 7 4 5 5 12 | 7 9 2 2 13 | 7 11 1 1 14 | 9 9 1 1 15 | 9 10 1 1 16 | 10 9 1 1 17 | 11 9 1 1 18 | 11 11 1 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_01_27/proposta_ko_outofbound.txt: -------------------------------------------------------------------------------- 1 | 0 2 7 7 2 | 0 11 1 1 3 | 1 0 1 1 4 | 1 9 6 6 5 | 2 0 2 2 6 | 4 0 2 2 7 | 6 0 2 2 8 | 7 2 1 1 9 | 7 3 1 1 10 | 7 4 6 6 11 | 7 9 2 2 12 | 7 11 1 1 13 | 9 9 1 1 14 | 9 10 1 1 15 | 10 9 1 1 16 | 11 9 1 1 17 | 11 10 1 1 18 | 11 11 1 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_01_27/proposta_ko_overlap.txt: -------------------------------------------------------------------------------- 1 | 0 2 7 7 2 | 0 11 1 7 3 | 1 0 1 7 4 | 1 9 3 3 5 | 2 0 2 2 6 | 4 0 2 2 7 | 4 9 3 3 8 | 6 0 2 2 9 | 7 2 1 1 10 | 7 3 1 1 11 | 7 4 6 6 12 | 7 9 2 2 13 | 7 11 1 1 14 | 9 9 1 1 15 | 9 10 1 1 16 | 10 9 1 1 17 | 11 9 1 1 18 | 11 10 1 1 19 | 11 11 1 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_01_27/proposta_ok.txt: -------------------------------------------------------------------------------- 1 | 0 2 7 7 2 | 0 11 1 1 3 | 1 0 1 1 4 | 1 9 3 3 5 | 2 0 2 2 6 | 4 0 2 2 7 | 4 9 3 3 8 | 6 0 2 2 9 | 7 2 1 1 10 | 7 3 1 1 11 | 7 4 5 5 12 | 7 9 2 2 13 | 7 11 1 1 14 | 9 9 1 1 15 | 9 10 1 1 16 | 10 9 1 1 17 | 11 9 1 1 18 | 11 10 1 1 19 | 11 11 1 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/griglia.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/griglia.o -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/main.o -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/outDebug.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/outDebug.exe -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/percorso.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/build/Debug/percorso.o -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_02_09/2022_02_09/griglia.txt: -------------------------------------------------------------------------------- 1 | 7 7 2 | 0 0 0 0 0 0 0 3 | 0 0 1 0 0 0 0 4 | 0 0 1 0 1 1 1 5 | 0 0 0 0 0 0 0 6 | 0 0 0 0 0 1 0 7 | 1 0 0 1 1 1 0 8 | 0 0 0 0 0 0 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_02_09/griglia.txt: -------------------------------------------------------------------------------- 1 | 7 7 2 | 0 0 0 0 0 0 0 3 | 0 0 1 0 0 0 0 4 | 0 0 1 0 1 1 1 5 | 0 0 0 0 0 0 0 6 | 0 0 0 0 0 1 0 7 | 1 0 0 1 1 1 0 8 | 0 0 0 0 0 0 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_06_27/bin/Debug/Tema esame 2022_06_27.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_06_27/bin/Debug/Tema esame 2022_06_27.exe -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_06_27/g.txt: -------------------------------------------------------------------------------- 1 | 7 2 | 0 1 3 | 0 5 4 | 0 2 5 | 5 1 6 | 5 6 7 | 5 4 8 | 5 3 9 | 1 6 10 | 4 6 11 | 4 3 12 | 3 2 13 | 3 6 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_06_27/grafo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_06_27/grafo.c -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_06_27/obj/Debug/grafo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_06_27/obj/Debug/grafo.o -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_06_27/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2022/Tema esame 2022_06_27/obj/Debug/main.o -------------------------------------------------------------------------------- /temidiesame/18punti/2022/Tema esame 2022_06_27/partizione.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2 0 5 3 | 3 1 3 4 4 | 2 2 6 -------------------------------------------------------------------------------- /temidiesame/18punti/2022/e.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/bonus1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 7 AA EE 00 3 | 2 5 DF 00 4 | 4 9 AA EE FF FF 5 | 2 2 EE 00 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/bonus2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 7 AA EE FF 3 | 2 5 DF 00 4 | 4 9 AA EE FF FF 5 | 2 3 FF DF -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/bonusList.h: -------------------------------------------------------------------------------- 1 | #ifndef BONUSLIST_H 2 | #define BONUSLIST_H 3 | #include "bonus.h" 4 | 5 | typedef struct bonusList_t { 6 | int n; 7 | Bonus *b; 8 | } *BonusList; 9 | 10 | BonusList BONUSLISTinit(int n); 11 | BonusList BONUSLISTfile(FILE* file); 12 | 13 | #endif -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/grid.txt: -------------------------------------------------------------------------------- 1 | 3 2 | AA FF DF 3 | 55 00 FF 4 | EE 00 FF -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/mosse.txt: -------------------------------------------------------------------------------- 1 | 3 2 | AA 0 0 3 | EE 2 0 4 | 00 2 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/mosse1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | AA 0 0 3 | EE 2 0 4 | FF 2 2 5 | DF 0 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/mosse2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | AA 0 0 3 | EE 2 0 4 | FF 2 2 5 | FF 1 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/2023_02_07/token.c: -------------------------------------------------------------------------------- 1 | #include "token.h" 2 | 3 | Token TOKENinit(char *val) { 4 | Token t; 5 | 6 | t = (Token) malloc(sizeof(*t)); 7 | strcpy(t->val, val); 8 | 9 | return t; 10 | } 11 | 12 | int TOKENcmp(Token t1, Token t2) { 13 | return strcmp(t1->val, t2->val); 14 | } -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/bonus1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 7 AA EE 00 3 | 2 5 DF 00 4 | 4 9 AA EE FF FF 5 | 2 2 EE 00 6 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/bonus2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 7 AA EE FF 3 | 2 5 DF 00 4 | 4 9 AA EE FF FF 5 | 2 3 FF DF -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/grid.h: -------------------------------------------------------------------------------- 1 | #ifndef GRID_H_INCLUDED 2 | #define GRID_H_INCLUDED 3 | #include "token.h" 4 | 5 | typedef struct{ 6 | Token **grid; 7 | int nr, nc; 8 | }Grid; 9 | 10 | Grid GRIDread(FILE *f); 11 | void GRIDclear(Grid *g); 12 | 13 | #endif // GRID_H_INCLUDED 14 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/grid.txt: -------------------------------------------------------------------------------- 1 | 3 2 | AA FF DF 3 | 55 00 FF 4 | EE 00 FF -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2023/Tema esame 2023_02_07/main.c -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/mosse.txt: -------------------------------------------------------------------------------- 1 | 3 2 | AA 0 0 3 | EE 2 0 4 | 00 2 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/mosse1.txt: -------------------------------------------------------------------------------- 1 | 4 2 | AA 0 0 3 | EE 2 0 4 | FF 2 2 5 | DF 0 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_07/mosse2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | AA 0 0 3 | EE 2 0 4 | FF 2 2 5 | FF 1 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/assegnazione_ok.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 0 1 0 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/assegnazione_wrong_assegnazione.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 0 0 3 3 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/assegnazione_wrong_dimensione.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 0 1 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/assegnazione_wrong_valori.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 0 1 0 -1 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/assegnazione_wrong_valori_2.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 0 11 0 1 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/incarichi.h: -------------------------------------------------------------------------------- 1 | #ifndef INCARICHI_H_INCLUDED 2 | #define INCARICHI_H_INCLUDED 3 | 4 | typedef struct{ 5 | int *D; 6 | int T; 7 | }Incarichi; 8 | 9 | Incarichi INCARICHIread(FILE *f); 10 | void INCARICHIclear(Incarichi i); 11 | 12 | #endif // INCARICHI_H_INCLUDED 13 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 10 6 8 3 | 4 4 | 3 2 5 3 5 | 0 2 1 4 6 | 2 0 4 1 7 | 1 4 0 3 8 | 4 1 3 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/persone.h: -------------------------------------------------------------------------------- 1 | #ifndef PERSONE_H_INCLUDED 2 | #define PERSONE_H_INCLUDED 3 | 4 | typedef struct{ 5 | int *E; 6 | int P; 7 | }Persone; 8 | 9 | Persone PERSONEread(FILE *f); 10 | void PERSONEclear(Persone p); 11 | 12 | #endif // PERSONE_H_INCLUDED 13 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_02_21/sinergia.h: -------------------------------------------------------------------------------- 1 | #ifndef SINERGIA_H_INCLUDED 2 | #define SINERGIA_H_INCLUDED 3 | 4 | typedef struct{ 5 | int **S; 6 | int P; 7 | }Sinergia; 8 | 9 | Sinergia SINERGIAread(FILE *f, int P); 10 | void SINERGIAclear(Sinergia s); 11 | #endif // SINERGIA_H_INCLUDED 12 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/2023_05_11/grafo.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 0 1 3 | 0 2 4 | 0 5 5 | 0 3 6 | 1 2 7 | 1 4 8 | 2 4 9 | 3 5 10 | 4 5 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/2023_05_11/grafo_2.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 0 1 3 | 0 2 4 | 1 2 5 | 2 3 6 | 3 4 7 | 3 5 8 | 4 5 9 | -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/2023_05_11/test.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 2 3 | 0 3 5 4 | 1 2 4 5 | 0 2 6 | 0 1 2 7 | 0 3 5 8 | 0 2 9 | 0 1 2 10 | 0 5 4 11 | 0 2 12 | 0 1 2 13 | 3 4 5 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/2023_05_11/test_2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 2 3 | 0 1 2 4 | 3 4 5 5 | 0 2 6 | 0 1 2 7 | 0 3 4 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/grafo.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 0 1 3 | 0 2 4 | 0 5 5 | 0 3 6 | 1 2 7 | 1 4 8 | 2 4 9 | 3 5 10 | 4 5 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/proposta_no_archi_non_esistenti.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 1 4 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/proposta_no_insiemi_non_disgiunti.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 1 2 4 3 | 3 0 1 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/proposta_no_non_3_vertici.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 4 1 2 0 5 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/proposta_no_vertici_no_grafo.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 0 7 5 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/proposta_no_vertici_non_diversi.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 1 1 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/proposta_ok.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 0 3 5 3 | 3 1 2 4 -------------------------------------------------------------------------------- /temidiesame/18punti/2023/Tema esame 2023_05_11/trianglePacking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2023/Tema esame 2023_05_11/trianglePacking.c -------------------------------------------------------------------------------- /temidiesame/18punti/2023/e.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.27) 2 | project(ESAME C) 3 | 4 | set(CMAKE_C_STANDARD 99) 5 | 6 | add_executable(ESAME main.c 7 | ACT.c 8 | ACT.h 9 | ) 10 | -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240226/cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/cmake-build-debug/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | C:/ASD/ESAME/cmake-build-debug/CMakeFiles/ESAME.dir 2 | C:/ASD/ESAME/cmake-build-debug/CMakeFiles/edit_cache.dir 3 | C:/ASD/ESAME/cmake-build-debug/CMakeFiles/rebuild_cache.dir 4 | -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/cmake-build-debug/CMakeFiles/clion-environment.txt: -------------------------------------------------------------------------------- 1 | ToolSet: 11.0 w64 (local)@C:\Program Files\JetBrains\CLion 2023.3.2\bin\mingw 2 | Options: 3 | 4 | Options:-DCMAKE_MAKE_PROGRAM=C:/Program Files/JetBrains/CLion 2023.3.2/bin/ninja/win/x64/ninja.exe -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/cmake-build-debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/cmake-build-debug/Testing/Temporary/LastTest.log: -------------------------------------------------------------------------------- 1 | Start testing: Feb 28 12:13 ora solare Europa occidentale 2 | ---------------------------------------------------------- 3 | End testing: Feb 28 12:13 ora solare Europa occidentale 4 | -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/ex.txt: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 2 | Act1 1 1 50 3 | Act2 3 2 20 4 | Act4 2 98 200 5 | Act3 6 13 100 6 | Act4 Act1 7 | Act3 Act2 Act1 -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240226/q1660_312200-20240226_a36834.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240226/q1660_312200-20240226_a36834.pdf -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13.pdf -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/ELENCO.h: -------------------------------------------------------------------------------- 1 | #ifndef ELENCO_H 2 | #define ELENCO_H 3 | #include 4 | #include 5 | 6 | typedef struct elenco_t *ELENCO; 7 | 8 | ELENCO ELENCOinit(int maxN); 9 | ELENCO ELENCOfile(FILE* file); 10 | int ELENCOgetN(ELENCO e); 11 | 12 | #endif -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/Relazione_S296525_13092024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/Relazione_S296525_13092024.pdf -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/DISTMATR.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/DISTMATR.o -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/ELENCO.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/ELENCO.o -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/SEDI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/SEDI.o -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/SERVIZI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/SERVIZI.o -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/main.o -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/outDebug.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/18punti/2024/20240913/2024_09_13/build/Debug/outDebug.exe -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/data.txt: -------------------------------------------------------------------------------- 1 | 6 2 | A 3 | B 4 | C 5 | D 6 | E 7 | F 8 | 0 2 5 4 2 6 9 | 2 0 6 6 2 5 10 | 5 6 0 7 4 3 11 | 4 6 7 0 6 3 12 | 2 2 4 6 0 6 13 | 6 5 3 3 6 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/testSedi.txt: -------------------------------------------------------------------------------- 1 | 6 2 2 | 1 0 1 0 0 0 -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/testServizi1.txt: -------------------------------------------------------------------------------- 1 | 6 2 3.25 2 | 0 0 2 0 2 2 -------------------------------------------------------------------------------- /temidiesame/18punti/2024/20240913/2024_09_13/testServizi2.txt: -------------------------------------------------------------------------------- 1 | 6 2 3.25 2 | 0 1 0 0 0 1 -------------------------------------------------------------------------------- /temidiesame/18punti/README.md: -------------------------------------------------------------------------------- 1 | # APA18pt 2 | Personal solution of 18 points exercise 3 | -------------------------------------------------------------------------------- /temidiesame/Documenti/Consigli_Preparazione.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/Documenti/Consigli_Preparazione.pdf -------------------------------------------------------------------------------- /temidiesame/Documenti/Esercitazione_teoria_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/Documenti/Esercitazione_teoria_1.pdf -------------------------------------------------------------------------------- /temidiesame/Documenti/Esercitazione_teoria_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/Documenti/Esercitazione_teoria_2.pdf -------------------------------------------------------------------------------- /temidiesame/Documenti/Esercizi_di_teoria.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/Documenti/Esercizi_di_teoria.pdf -------------------------------------------------------------------------------- /temidiesame/Documenti/Funzioni_Libreria.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/Documenti/Funzioni_Libreria.pdf -------------------------------------------------------------------------------- /temidiesame/Documenti/Teoria_Risolti.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/Documenti/Teoria_Risolti.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/20230207_Programmazione.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/20230207_Programmazione.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/20230207_Teoria.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/20230207_Teoria.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/20240213/2024_02_13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/20240213/2024_02_13.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/AP_2014-2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/AP_2014-2018.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/AP_2019_2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/AP_2019_2020.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/AP_ASD_AppelliExam_2020_2021 [PROGRAMMAZIONE].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/AP_ASD_AppelliExam_2020_2021 [PROGRAMMAZIONE].pdf -------------------------------------------------------------------------------- /temidiesame/pdf/ASD_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/ASD_2022.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2014_02_06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2014_02_06.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2014_02_24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2014_02_24.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2014_06_27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2014_06_27.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2014_09_03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2014_09_03.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2015_02_02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2015_02_02.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2015_02_23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2015_02_23.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2015_06_16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2015_06_16.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2015_09_02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2015_09_02.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2016_01_26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2016_01_26.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2016_02_22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2016_02_22.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2016_06_14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2016_06_14.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2016_09_09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2016_09_09.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2017_02_04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2017_02_04.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2017_02_22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2017_02_22.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2017_06_26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2017_06_26.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2017_09_18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2017_09_18.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2018_01_29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2018_01_29.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2018_02_13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2018_02_13.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2018_06_21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2018_06_21.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2018_09_13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2018_09_13.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2019_01_31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2019_01_31.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2019_02_22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2019_02_22.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2019_07_02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2019_07_02.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2019_09_18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2019_09_18.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2020_01_28.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2020_01_28.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2020_02_21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2020_02_21.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2022_01_27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2022_01_27.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2022_02_09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2022_02_09.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2022_06_27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2022_06_27.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2022_09_02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2022_09_02.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2023_02_07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2023_02_07.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2023_05_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2023_05_11.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/20240913/2024_09_13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/20240913/2024_09_13.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/Temi_Esame/2024_02_26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/Temi_Esame/2024_02_26.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/soluzioni_prog/220127_Commento.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/soluzioni_prog/220127_Commento.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/soluzioni_prog/220209_Commento.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/soluzioni_prog/220209_Commento.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/soluzioni_prog/BozzeSoluzione.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/soluzioni_prog/BozzeSoluzione.zip -------------------------------------------------------------------------------- /temidiesame/pdf/teoria/compito d'esame di teoria I appello 2021-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/teoria/compito d'esame di teoria I appello 2021-22.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/teoria/esercizi di teoria risolti.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/teoria/esercizi di teoria risolti.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/teoria/preparazione al compito di teoria.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/teoria/preparazione al compito di teoria.pdf -------------------------------------------------------------------------------- /temidiesame/pdf/teoria/soluzioni compito esame teoria I appello 2021-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneMoreWare/ASD/a55daf7ff4081403bd8d5fc360fe6faa4e674082/temidiesame/pdf/teoria/soluzioni compito esame teoria I appello 2021-22.pdf --------------------------------------------------------------------------------