├── README.md ├── labs ├── lab00 │ ├── .gitignore │ ├── README.md │ ├── bounds.c │ ├── lab00-kickstart.tar.gz │ └── tictactoe.c ├── lab01 │ ├── ej1 │ │ └── main.c │ ├── ej2 │ │ └── main.c │ ├── ej3 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ └── main.c │ ├── ej4 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ └── main.c │ ├── ej5 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── main.c │ │ ├── mybool.h │ │ ├── test_bool.c │ │ └── test_mybool.c │ ├── ej6 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ └── main.c │ └── input │ │ ├── empty.in │ │ ├── example-easy.in │ │ ├── example-invalid.in │ │ ├── example-sorted.in │ │ ├── example-unsorted.in │ │ ├── sorted-asc-100.in │ │ ├── sorted-asc-10000.in │ │ ├── sorted-desc-10.in │ │ ├── sorted-desc-100.in │ │ └── unsorted-100000.in ├── lab02 │ ├── README.pdf │ ├── ej0 │ │ ├── Makefile │ │ ├── fixstring.c │ │ ├── fixstring.h │ │ ├── main.c │ │ └── main.hs │ ├── ej1 │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── main.c │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sort_helpers.h │ │ └── sort_helpers.o │ ├── ej2 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── main.c │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sort_helpers.h │ │ └── sort_helpers.o │ ├── ej3 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── main.c │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sort_helpers.h │ │ └── sort_helpers.o │ ├── ej4 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── main.c │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sort_helpers.h │ │ └── sort_helpers.o │ ├── ej5 │ │ ├── alphabetic │ │ │ ├── Makefile │ │ │ ├── array_helpers.c │ │ │ ├── array_helpers.h │ │ │ ├── fixstring.c │ │ │ ├── fixstring.h │ │ │ ├── main.c │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── sort_helpers.c │ │ │ └── sort_helpers.h │ │ ├── bylength │ │ │ ├── Makefile │ │ │ ├── array_helpers.c │ │ │ ├── array_helpers.h │ │ │ ├── fixstring.c │ │ │ ├── fixstring.h │ │ │ ├── main.c │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── sort_helpers.c │ │ │ └── sort_helpers.h │ │ └── input │ │ │ ├── example-easywords.in │ │ │ └── example-names.in │ └── input │ │ ├── all-negative-100.in │ │ ├── all-positive-100.in │ │ ├── empty.in │ │ ├── example-sorted.in │ │ ├── example-unsorted.in │ │ ├── sorted-asc-100.in │ │ ├── sorted-asc-1000.in │ │ ├── sorted-asc-10000.in │ │ ├── sorted-desc-100.in │ │ ├── sorted-desc-1000.in │ │ ├── sorted-desc-10000.in │ │ ├── unsorted-100.in │ │ ├── unsorted-1000.in │ │ ├── unsorted-10000.in │ │ └── unsorted-100000.in ├── lab03 │ ├── README.pdf │ ├── ej1 │ │ └── main.c │ ├── ej2 │ │ ├── proc1.c │ │ └── proc2.c │ ├── ej3 │ │ ├── main.c │ │ ├── phrase-basic.in │ │ ├── phrase-hack.in │ │ ├── phrase1.in │ │ ├── phrase2.in │ │ ├── phrase3.in │ │ └── phrase4.in │ ├── ej4 │ │ ├── Makefile │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── main.c │ │ ├── weather.c │ │ ├── weather.h │ │ ├── weather_cordoba.out │ │ ├── weather_utils.c │ │ └── weather_utils.h │ ├── ej5 │ │ ├── Makefile │ │ ├── helpers.c │ │ ├── helpers.h │ │ ├── main.c │ │ ├── player.h │ │ ├── sort.c │ │ └── sort.h │ ├── ej6 │ │ ├── Makefile │ │ ├── helpers.c │ │ ├── helpers.h │ │ ├── main.c │ │ ├── player.h │ │ ├── sort.c │ │ └── sort.h │ └── input │ │ ├── atp-players2022.in │ │ └── weather_cordoba.in ├── lab04 │ ├── ej0 │ │ ├── a │ │ │ ├── a.out │ │ │ └── array.c │ │ ├── b │ │ │ ├── data.h │ │ │ └── main.c │ │ ├── c │ │ │ ├── a.out │ │ │ ├── data.h │ │ │ └── sizes.c │ │ └── d │ │ │ ├── dynamic │ │ │ ├── Makefile │ │ │ ├── array_helpers.c │ │ │ ├── array_helpers.h │ │ │ └── main.c │ │ │ ├── input │ │ │ ├── empty.in │ │ │ ├── example-easy.in │ │ │ ├── example-sorted.in │ │ │ ├── sorted-asc-10000.in │ │ │ ├── unsorted-100000.in │ │ │ └── unsorted-200000.in │ │ │ └── static │ │ │ ├── array_helpers.c │ │ │ ├── array_helpers.h │ │ │ └── main.c │ ├── ej1 │ │ ├── pair_a │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── pair.c │ │ │ └── pair.h │ │ ├── pair_b │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── pair.c │ │ │ └── pair.h │ │ ├── pair_c │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── pair.c │ │ │ └── pair.h │ │ └── pair_d │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── pair.c │ │ │ └── pair.h │ ├── ej2 │ │ ├── Makefile │ │ ├── counter.c │ │ ├── counter.h │ │ ├── input │ │ │ ├── balanced.in │ │ │ ├── moreopen.in │ │ │ └── onlyopen.in │ │ └── main.c │ ├── ej3 │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── input │ │ │ ├── all-negative-100.in │ │ │ ├── all-positive-100.in │ │ │ ├── empty.in │ │ │ ├── example-sorted.in │ │ │ └── example-unsorted.in │ │ ├── list.c │ │ ├── list.h │ │ └── main.c │ └── lab04-2023.pdf ├── lab05 │ ├── README.pdf │ ├── ej1a │ │ ├── Makefile │ │ ├── README.md │ │ ├── reader.output │ │ ├── reverse │ │ │ ├── 1 │ │ │ ├── Makefile │ │ │ ├── array_helpers.c │ │ │ ├── array_helpers.h │ │ │ ├── input │ │ │ │ ├── empty.in │ │ │ │ ├── example-easy.in │ │ │ │ ├── example-sorted.in │ │ │ │ └── example-unsorted.in │ │ │ └── reverse.c │ │ ├── stack.c │ │ ├── stack.h │ │ ├── stack.o │ │ ├── test.c │ │ └── test.o │ ├── ej1b │ │ ├── Makefile │ │ ├── reverse │ │ │ ├── Makefile │ │ │ ├── array_helpers.c │ │ │ ├── array_helpers.h │ │ │ ├── input │ │ │ │ ├── empty.in │ │ │ │ ├── example-easy.in │ │ │ │ ├── example-sorted.in │ │ │ │ └── example-unsorted.in │ │ │ └── reverse.c │ │ ├── stack.c │ │ ├── stack.h │ │ └── test.c │ ├── ej2 │ │ ├── stack.c │ │ └── stack.h │ ├── ej3 │ │ ├── Makefile │ │ ├── hanoi.c │ │ ├── hanoi.h │ │ ├── hanoi.o │ │ ├── main.c │ │ ├── main.o │ │ ├── solve-hanoi │ │ ├── stack.c │ │ ├── stack.h │ │ └── stack.o │ └── ej4 │ │ ├── a │ │ ├── Makefile │ │ ├── main.c │ │ ├── strfuncs.c │ │ └── strfuncs.h │ │ ├── b │ │ └── readstr.c │ │ ├── c │ │ ├── Makefile │ │ ├── clone.c │ │ ├── clone_ptr.c │ │ └── clone_ptr.h │ │ └── d │ │ └── clone.c ├── lab06 │ ├── README.pdf │ ├── ej0 │ │ ├── a │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── queue_helpers.c │ │ │ └── queue_helpers.h │ │ ├── b │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── queue_helpers.c │ │ │ └── queue_helpers.h │ │ ├── c │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── queue_helpers.c │ │ │ └── queue_helpers.h │ │ └── input │ │ │ ├── empty.in │ │ │ ├── example-easy.in │ │ │ ├── example-sorted.in │ │ │ ├── example-unsorted.in │ │ │ ├── sorted-asc-100.in │ │ │ ├── sorted-asc-10000.in │ │ │ ├── sorted-desc-100.in │ │ │ ├── unsorted-100000.in │ │ │ └── unsorted-200000.in │ ├── ej1 │ │ ├── Makefile │ │ ├── abb.c │ │ ├── abb.h │ │ ├── input │ │ │ ├── abb_example.in │ │ │ ├── abb_example2.in │ │ │ ├── empty.in │ │ │ ├── example-unsorted.in │ │ │ └── unsorted-100000.in │ │ └── main.c │ ├── ej2 │ │ ├── Makefile │ │ ├── main.c │ │ ├── string.c │ │ └── string.h │ └── ej3 │ │ ├── Makefile │ │ ├── dict.c │ │ ├── dict.h │ │ ├── dict_helpers.c │ │ ├── dict_helpers.h │ │ ├── helpers.c │ │ ├── helpers.h │ │ ├── input │ │ ├── large.dic │ │ └── nombres.dic │ │ ├── key_value.h │ │ ├── main.c │ │ ├── string.c │ │ └── string.h └── parciales │ ├── Parcial 1 2022-04-28 kickstart (Tema A) │ ├── Makefile │ ├── a.txt │ ├── array_helpers.c │ ├── array_helpers.h │ ├── flight.c │ ├── flight.h │ ├── inputs │ │ ├── a.txt │ │ ├── example11.in │ │ └── example34.in │ └── main.c │ ├── Parcial 1 2023-04-05 kickstart (Tema A) │ ├── Parcial 04-05 Tema A.pdf │ ├── kickstart-tema-A.tar.gz │ └── kickstart-tema-A │ │ ├── Makefile │ │ ├── a.txt │ │ ├── array_helpers.c │ │ ├── array_helpers.h │ │ ├── bakery_product.c │ │ ├── bakery_product.h │ │ ├── inputs │ │ ├── example_85.in │ │ ├── example_86.in │ │ ├── example_87.in │ │ ├── example_92.in │ │ ├── example_94.in │ │ ├── example_96.in │ │ └── example_99.in │ │ └── main.c │ ├── Parcial 2 2022-06-02 (Tema A) │ ├── Parcial 2 2022-06-02 (Tema A) │ │ ├── Makefile │ │ ├── input │ │ │ ├── hospital_a.in │ │ │ ├── hospital_b.in │ │ │ ├── hospital_c.in │ │ │ └── hospital_ordered.in │ │ ├── main.c │ │ ├── pqueue.c │ │ └── pqueue.h │ └── readme.pdf │ ├── Parcial 2 2022-06-02 (Tema B) │ ├── Parcial 2 2022-06-02 (Tema B) │ │ ├── Makefile │ │ ├── input │ │ │ ├── example_a.in │ │ │ ├── example_b.in │ │ │ ├── example_c.in │ │ │ └── example_ordered.in │ │ ├── main.c │ │ ├── pstack.c │ │ └── pstack.h │ └── readme.pdf │ ├── Parcial 2 2022-06-07 (Tema C) │ ├── Parcial 2 2022-06-07 (Tema C) │ │ ├── Makefile │ │ ├── input │ │ │ ├── hospital_a.in │ │ │ ├── hospital_b.in │ │ │ ├── hospital_c.in │ │ │ └── hospital_ordered.in │ │ ├── main.c │ │ ├── pqueue.c │ │ └── pqueue.h │ └── readme.pdf │ ├── Parcial 2 2022-07-06 (Tema D) │ ├── Parcial 2 2022-07-06 kickstart (Tema D) │ │ ├── Makefile │ │ ├── input │ │ │ ├── example_a.in │ │ │ ├── example_b.in │ │ │ ├── example_c.in │ │ │ └── example_ordered.in │ │ ├── main.c │ │ ├── pstack.c │ │ └── pstack.h │ └── Parcial 7-06 Tema D.pdf │ ├── Parcial 2 2023-02-28 Recuperatorio │ ├── Makefile │ ├── Recuperatorio Parcial 2.pdf │ ├── dict.c │ ├── dict.h │ ├── dict_helpers.c │ ├── dict_helpers.h │ ├── helpers.c │ ├── helpers.h │ ├── input │ │ ├── large.dic │ │ ├── nombres.dic │ │ ├── pru.txt │ │ └── pru2.txt │ ├── main.c │ ├── pru.txt │ ├── string.c │ └── string.h │ ├── Parcial 2 2023-06-01 (Tema B) │ ├── Parcial 1-06 Tema B.pdf │ ├── temaB.tar.xz │ └── temaB │ │ ├── kickstart-tema-B.tar.gz │ │ └── kickstart-tema-B │ │ ├── Makefile │ │ ├── input │ │ ├── different.in │ │ ├── priority_sorted.in │ │ ├── same_courses.in │ │ ├── same_grade.in │ │ └── same_grade_and_courses.in │ │ ├── main.c │ │ ├── pstack.c │ │ └── pstack.h │ ├── Parcial 2 2023-06-02 (Tema C) │ ├── .set.c.swp │ ├── .set.h.swp │ ├── Makefile │ ├── input │ │ ├── example-easy-005.in │ │ ├── example-sorted-005.in │ │ ├── example-unsorted-005.in │ │ ├── example-unsorted-015.in │ │ ├── example-unsorted-100.in │ │ └── exp.in │ ├── main.c │ ├── main.o │ ├── readme.pdf │ ├── set.c │ ├── set.h │ ├── set.o │ ├── set_helpers.c │ ├── set_helpers.h │ └── setload │ └── Parcial 2 2023-06-23 Recuperatorio (Tema D) │ ├── Recuperatorio-TemaD.pdf │ └── sol │ ├── Makefile │ ├── copy.c │ ├── insertl.c │ ├── insertr.c │ ├── middlel.c │ ├── middler.c │ ├── tape.c │ └── tape.h ├── practicos ├── 1.1 │ ├── ej_1 │ │ └── README.md │ ├── ej_2 │ │ └── README.md │ ├── ej_3 │ │ └── README.md │ ├── ej_5 │ │ └── README.md │ ├── ej_6 │ │ └── readme.md │ ├── ej_7 │ │ └── readme.md │ ├── ej_8 │ │ ├── grafico_a.png │ │ ├── grafico_a.py │ │ ├── grafico_b.png │ │ ├── grafico_b.py │ │ ├── grafico_c.png │ │ ├── grafico_c.py │ │ └── readme.md │ └── ej_9 │ │ └── readme.md ├── 1.2 │ ├── HW.pdf │ ├── ej_1 │ │ ├── README.md │ │ ├── explicacion_mergesort.pdf │ │ ├── merge_sort_tree.png │ │ └── tree.py │ ├── ej_2 │ │ └── README.md │ └── ej_3 │ │ ├── README.md │ │ ├── quick_sort_tree │ │ ├── quick_sort_tree.png │ │ └── tree.py ├── 1.3 │ └── ej_6 │ │ └── README.md ├── 2.1 │ ├── ej_1 │ │ └── README.md │ └── ej_2 │ │ └── README.md ├── 3.1 │ └── ej5.md └── pru └── src └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/README.md -------------------------------------------------------------------------------- /labs/lab00/.gitignore: -------------------------------------------------------------------------------- 1 | note.xoj 2 | -------------------------------------------------------------------------------- /labs/lab00/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab00/README.md -------------------------------------------------------------------------------- /labs/lab00/bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab00/bounds.c -------------------------------------------------------------------------------- /labs/lab00/lab00-kickstart.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab00/lab00-kickstart.tar.gz -------------------------------------------------------------------------------- /labs/lab00/tictactoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab00/tictactoe.c -------------------------------------------------------------------------------- /labs/lab01/ej1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej1/main.c -------------------------------------------------------------------------------- /labs/lab01/ej2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej2/main.c -------------------------------------------------------------------------------- /labs/lab01/ej3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej3/Makefile -------------------------------------------------------------------------------- /labs/lab01/ej3/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej3/array_helpers.c -------------------------------------------------------------------------------- /labs/lab01/ej3/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej3/array_helpers.h -------------------------------------------------------------------------------- /labs/lab01/ej3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej3/main.c -------------------------------------------------------------------------------- /labs/lab01/ej4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej4/Makefile -------------------------------------------------------------------------------- /labs/lab01/ej4/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej4/array_helpers.c -------------------------------------------------------------------------------- /labs/lab01/ej4/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej4/array_helpers.h -------------------------------------------------------------------------------- /labs/lab01/ej4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej4/main.c -------------------------------------------------------------------------------- /labs/lab01/ej5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/Makefile -------------------------------------------------------------------------------- /labs/lab01/ej5/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/array_helpers.c -------------------------------------------------------------------------------- /labs/lab01/ej5/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/array_helpers.h -------------------------------------------------------------------------------- /labs/lab01/ej5/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/main.c -------------------------------------------------------------------------------- /labs/lab01/ej5/mybool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/mybool.h -------------------------------------------------------------------------------- /labs/lab01/ej5/test_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/test_bool.c -------------------------------------------------------------------------------- /labs/lab01/ej5/test_mybool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej5/test_mybool.c -------------------------------------------------------------------------------- /labs/lab01/ej6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej6/Makefile -------------------------------------------------------------------------------- /labs/lab01/ej6/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej6/array_helpers.c -------------------------------------------------------------------------------- /labs/lab01/ej6/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej6/array_helpers.h -------------------------------------------------------------------------------- /labs/lab01/ej6/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/ej6/main.c -------------------------------------------------------------------------------- /labs/lab01/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab01/input/example-easy.in: -------------------------------------------------------------------------------- 1 | 5 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /labs/lab01/input/example-invalid.in: -------------------------------------------------------------------------------- 1 | 6 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /labs/lab01/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | -1 0 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab01/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab01/input/sorted-asc-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/input/sorted-asc-100.in -------------------------------------------------------------------------------- /labs/lab01/input/sorted-asc-10000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/input/sorted-asc-10000.in -------------------------------------------------------------------------------- /labs/lab01/input/sorted-desc-10.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/input/sorted-desc-10.in -------------------------------------------------------------------------------- /labs/lab01/input/sorted-desc-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/input/sorted-desc-100.in -------------------------------------------------------------------------------- /labs/lab01/input/unsorted-100000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab01/input/unsorted-100000.in -------------------------------------------------------------------------------- /labs/lab02/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/README.pdf -------------------------------------------------------------------------------- /labs/lab02/ej0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej0/Makefile -------------------------------------------------------------------------------- /labs/lab02/ej0/fixstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej0/fixstring.c -------------------------------------------------------------------------------- /labs/lab02/ej0/fixstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej0/fixstring.h -------------------------------------------------------------------------------- /labs/lab02/ej0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej0/main.c -------------------------------------------------------------------------------- /labs/lab02/ej0/main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej0/main.hs -------------------------------------------------------------------------------- /labs/lab02/ej1/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/array_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej1/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/array_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/main.c -------------------------------------------------------------------------------- /labs/lab02/ej1/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/sort.c -------------------------------------------------------------------------------- /labs/lab02/ej1/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/sort.h -------------------------------------------------------------------------------- /labs/lab02/ej1/sort_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/sort_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej1/sort_helpers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej1/sort_helpers.o -------------------------------------------------------------------------------- /labs/lab02/ej2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/Makefile -------------------------------------------------------------------------------- /labs/lab02/ej2/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/array_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej2/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/array_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/main.c -------------------------------------------------------------------------------- /labs/lab02/ej2/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/sort.c -------------------------------------------------------------------------------- /labs/lab02/ej2/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/sort.h -------------------------------------------------------------------------------- /labs/lab02/ej2/sort_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/sort_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej2/sort_helpers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej2/sort_helpers.o -------------------------------------------------------------------------------- /labs/lab02/ej3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/Makefile -------------------------------------------------------------------------------- /labs/lab02/ej3/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/array_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej3/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/array_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/main.c -------------------------------------------------------------------------------- /labs/lab02/ej3/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/sort.c -------------------------------------------------------------------------------- /labs/lab02/ej3/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/sort.h -------------------------------------------------------------------------------- /labs/lab02/ej3/sort_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/sort_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej3/sort_helpers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej3/sort_helpers.o -------------------------------------------------------------------------------- /labs/lab02/ej4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/Makefile -------------------------------------------------------------------------------- /labs/lab02/ej4/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/array_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej4/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/array_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/main.c -------------------------------------------------------------------------------- /labs/lab02/ej4/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/sort.c -------------------------------------------------------------------------------- /labs/lab02/ej4/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/sort.h -------------------------------------------------------------------------------- /labs/lab02/ej4/sort_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/sort_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej4/sort_helpers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej4/sort_helpers.o -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/Makefile -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/array_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/array_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/fixstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/fixstring.c -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/fixstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/fixstring.h -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/main.c -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/sort.c -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/sort.h -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/sort_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/sort_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej5/alphabetic/sort_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/alphabetic/sort_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/Makefile -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/array_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/array_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/fixstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/fixstring.c -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/fixstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/fixstring.h -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/main.c -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/sort.c -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/sort.h -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/sort_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/sort_helpers.c -------------------------------------------------------------------------------- /labs/lab02/ej5/bylength/sort_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/bylength/sort_helpers.h -------------------------------------------------------------------------------- /labs/lab02/ej5/input/example-easywords.in: -------------------------------------------------------------------------------- 1 | 4 2 | amanda aetomovil casa perro 3 | -------------------------------------------------------------------------------- /labs/lab02/ej5/input/example-names.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/ej5/input/example-names.in -------------------------------------------------------------------------------- /labs/lab02/input/all-negative-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/all-negative-100.in -------------------------------------------------------------------------------- /labs/lab02/input/all-positive-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/all-positive-100.in -------------------------------------------------------------------------------- /labs/lab02/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab02/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 0 -1 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab02/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab02/input/sorted-asc-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/sorted-asc-100.in -------------------------------------------------------------------------------- /labs/lab02/input/sorted-asc-1000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/sorted-asc-1000.in -------------------------------------------------------------------------------- /labs/lab02/input/sorted-asc-10000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/sorted-asc-10000.in -------------------------------------------------------------------------------- /labs/lab02/input/sorted-desc-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/sorted-desc-100.in -------------------------------------------------------------------------------- /labs/lab02/input/sorted-desc-1000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/sorted-desc-1000.in -------------------------------------------------------------------------------- /labs/lab02/input/sorted-desc-10000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/sorted-desc-10000.in -------------------------------------------------------------------------------- /labs/lab02/input/unsorted-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/unsorted-100.in -------------------------------------------------------------------------------- /labs/lab02/input/unsorted-1000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/unsorted-1000.in -------------------------------------------------------------------------------- /labs/lab02/input/unsorted-10000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/unsorted-10000.in -------------------------------------------------------------------------------- /labs/lab02/input/unsorted-100000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab02/input/unsorted-100000.in -------------------------------------------------------------------------------- /labs/lab03/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/README.pdf -------------------------------------------------------------------------------- /labs/lab03/ej1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej1/main.c -------------------------------------------------------------------------------- /labs/lab03/ej2/proc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej2/proc1.c -------------------------------------------------------------------------------- /labs/lab03/ej2/proc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej2/proc2.c -------------------------------------------------------------------------------- /labs/lab03/ej3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/main.c -------------------------------------------------------------------------------- /labs/lab03/ej3/phrase-basic.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/phrase-basic.in -------------------------------------------------------------------------------- /labs/lab03/ej3/phrase-hack.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/phrase-hack.in -------------------------------------------------------------------------------- /labs/lab03/ej3/phrase1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/phrase1.in -------------------------------------------------------------------------------- /labs/lab03/ej3/phrase2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/phrase2.in -------------------------------------------------------------------------------- /labs/lab03/ej3/phrase3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/phrase3.in -------------------------------------------------------------------------------- /labs/lab03/ej3/phrase4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej3/phrase4.in -------------------------------------------------------------------------------- /labs/lab03/ej4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/Makefile -------------------------------------------------------------------------------- /labs/lab03/ej4/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/array_helpers.c -------------------------------------------------------------------------------- /labs/lab03/ej4/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/array_helpers.h -------------------------------------------------------------------------------- /labs/lab03/ej4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/main.c -------------------------------------------------------------------------------- /labs/lab03/ej4/weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/weather.c -------------------------------------------------------------------------------- /labs/lab03/ej4/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/weather.h -------------------------------------------------------------------------------- /labs/lab03/ej4/weather_cordoba.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/weather_cordoba.out -------------------------------------------------------------------------------- /labs/lab03/ej4/weather_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/weather_utils.c -------------------------------------------------------------------------------- /labs/lab03/ej4/weather_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej4/weather_utils.h -------------------------------------------------------------------------------- /labs/lab03/ej5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/Makefile -------------------------------------------------------------------------------- /labs/lab03/ej5/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/helpers.c -------------------------------------------------------------------------------- /labs/lab03/ej5/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/helpers.h -------------------------------------------------------------------------------- /labs/lab03/ej5/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/main.c -------------------------------------------------------------------------------- /labs/lab03/ej5/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/player.h -------------------------------------------------------------------------------- /labs/lab03/ej5/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/sort.c -------------------------------------------------------------------------------- /labs/lab03/ej5/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej5/sort.h -------------------------------------------------------------------------------- /labs/lab03/ej6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/Makefile -------------------------------------------------------------------------------- /labs/lab03/ej6/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/helpers.c -------------------------------------------------------------------------------- /labs/lab03/ej6/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/helpers.h -------------------------------------------------------------------------------- /labs/lab03/ej6/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/main.c -------------------------------------------------------------------------------- /labs/lab03/ej6/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/player.h -------------------------------------------------------------------------------- /labs/lab03/ej6/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/sort.c -------------------------------------------------------------------------------- /labs/lab03/ej6/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/ej6/sort.h -------------------------------------------------------------------------------- /labs/lab03/input/atp-players2022.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/input/atp-players2022.in -------------------------------------------------------------------------------- /labs/lab03/input/weather_cordoba.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab03/input/weather_cordoba.in -------------------------------------------------------------------------------- /labs/lab04/ej0/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/a/a.out -------------------------------------------------------------------------------- /labs/lab04/ej0/a/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/a/array.c -------------------------------------------------------------------------------- /labs/lab04/ej0/b/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/b/data.h -------------------------------------------------------------------------------- /labs/lab04/ej0/b/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/b/main.c -------------------------------------------------------------------------------- /labs/lab04/ej0/c/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/c/a.out -------------------------------------------------------------------------------- /labs/lab04/ej0/c/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/c/data.h -------------------------------------------------------------------------------- /labs/lab04/ej0/c/sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/c/sizes.c -------------------------------------------------------------------------------- /labs/lab04/ej0/d/dynamic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/dynamic/Makefile -------------------------------------------------------------------------------- /labs/lab04/ej0/d/dynamic/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/dynamic/array_helpers.c -------------------------------------------------------------------------------- /labs/lab04/ej0/d/dynamic/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/dynamic/array_helpers.h -------------------------------------------------------------------------------- /labs/lab04/ej0/d/dynamic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/dynamic/main.c -------------------------------------------------------------------------------- /labs/lab04/ej0/d/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab04/ej0/d/input/example-easy.in: -------------------------------------------------------------------------------- 1 | 5 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /labs/lab04/ej0/d/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | -1 0 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab04/ej0/d/input/sorted-asc-10000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/input/sorted-asc-10000.in -------------------------------------------------------------------------------- /labs/lab04/ej0/d/input/unsorted-100000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/input/unsorted-100000.in -------------------------------------------------------------------------------- /labs/lab04/ej0/d/input/unsorted-200000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/input/unsorted-200000.in -------------------------------------------------------------------------------- /labs/lab04/ej0/d/static/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/static/array_helpers.c -------------------------------------------------------------------------------- /labs/lab04/ej0/d/static/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/static/array_helpers.h -------------------------------------------------------------------------------- /labs/lab04/ej0/d/static/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej0/d/static/main.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_a/Makefile -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_a/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_a/main.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_a/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_a/pair.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_a/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_a/pair.h -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_b/Makefile -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_b/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_b/main.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_b/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_b/pair.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_b/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_b/pair.h -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_c/Makefile -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_c/main.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_c/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_c/pair.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_c/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_c/pair.h -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_d/Makefile -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_d/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_d/main.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_d/pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_d/pair.c -------------------------------------------------------------------------------- /labs/lab04/ej1/pair_d/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej1/pair_d/pair.h -------------------------------------------------------------------------------- /labs/lab04/ej2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej2/Makefile -------------------------------------------------------------------------------- /labs/lab04/ej2/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej2/counter.c -------------------------------------------------------------------------------- /labs/lab04/ej2/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej2/counter.h -------------------------------------------------------------------------------- /labs/lab04/ej2/input/balanced.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej2/input/balanced.in -------------------------------------------------------------------------------- /labs/lab04/ej2/input/moreopen.in: -------------------------------------------------------------------------------- 1 | ((())((( 2 | -------------------------------------------------------------------------------- /labs/lab04/ej2/input/onlyopen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej2/input/onlyopen.in -------------------------------------------------------------------------------- /labs/lab04/ej2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej2/main.c -------------------------------------------------------------------------------- /labs/lab04/ej3/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/array_helpers.c -------------------------------------------------------------------------------- /labs/lab04/ej3/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/array_helpers.h -------------------------------------------------------------------------------- /labs/lab04/ej3/input/all-negative-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/input/all-negative-100.in -------------------------------------------------------------------------------- /labs/lab04/ej3/input/all-positive-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/input/all-positive-100.in -------------------------------------------------------------------------------- /labs/lab04/ej3/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab04/ej3/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 0 -1 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab04/ej3/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab04/ej3/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/list.c -------------------------------------------------------------------------------- /labs/lab04/ej3/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/list.h -------------------------------------------------------------------------------- /labs/lab04/ej3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/ej3/main.c -------------------------------------------------------------------------------- /labs/lab04/lab04-2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab04/lab04-2023.pdf -------------------------------------------------------------------------------- /labs/lab05/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/README.pdf -------------------------------------------------------------------------------- /labs/lab05/ej1a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej1a/README.md: -------------------------------------------------------------------------------- 1 | xs 2 | -------------------------------------------------------------------------------- /labs/lab05/ej1a/reader.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/reader.output -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/reverse/1 -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/reverse/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/reverse/array_helpers.c -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/reverse/array_helpers.h -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/input/example-easy.in: -------------------------------------------------------------------------------- 1 | 5 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | -1 0 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab05/ej1a/reverse/reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/reverse/reverse.c -------------------------------------------------------------------------------- /labs/lab05/ej1a/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/stack.c -------------------------------------------------------------------------------- /labs/lab05/ej1a/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/stack.h -------------------------------------------------------------------------------- /labs/lab05/ej1a/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/stack.o -------------------------------------------------------------------------------- /labs/lab05/ej1a/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/test.c -------------------------------------------------------------------------------- /labs/lab05/ej1a/test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1a/test.o -------------------------------------------------------------------------------- /labs/lab05/ej1b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/reverse/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/reverse/array_helpers.c -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/reverse/array_helpers.h -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/input/example-easy.in: -------------------------------------------------------------------------------- 1 | 5 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | -1 0 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab05/ej1b/reverse/reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/reverse/reverse.c -------------------------------------------------------------------------------- /labs/lab05/ej1b/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/stack.c -------------------------------------------------------------------------------- /labs/lab05/ej1b/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/stack.h -------------------------------------------------------------------------------- /labs/lab05/ej1b/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej1b/test.c -------------------------------------------------------------------------------- /labs/lab05/ej2/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej2/stack.c -------------------------------------------------------------------------------- /labs/lab05/ej2/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej2/stack.h -------------------------------------------------------------------------------- /labs/lab05/ej3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej3/hanoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/hanoi.c -------------------------------------------------------------------------------- /labs/lab05/ej3/hanoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/hanoi.h -------------------------------------------------------------------------------- /labs/lab05/ej3/hanoi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/hanoi.o -------------------------------------------------------------------------------- /labs/lab05/ej3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/main.c -------------------------------------------------------------------------------- /labs/lab05/ej3/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/main.o -------------------------------------------------------------------------------- /labs/lab05/ej3/solve-hanoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/solve-hanoi -------------------------------------------------------------------------------- /labs/lab05/ej3/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/stack.c -------------------------------------------------------------------------------- /labs/lab05/ej3/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/stack.h -------------------------------------------------------------------------------- /labs/lab05/ej3/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej3/stack.o -------------------------------------------------------------------------------- /labs/lab05/ej4/a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/a/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej4/a/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/a/main.c -------------------------------------------------------------------------------- /labs/lab05/ej4/a/strfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/a/strfuncs.c -------------------------------------------------------------------------------- /labs/lab05/ej4/a/strfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/a/strfuncs.h -------------------------------------------------------------------------------- /labs/lab05/ej4/b/readstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/b/readstr.c -------------------------------------------------------------------------------- /labs/lab05/ej4/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/c/Makefile -------------------------------------------------------------------------------- /labs/lab05/ej4/c/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/c/clone.c -------------------------------------------------------------------------------- /labs/lab05/ej4/c/clone_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/c/clone_ptr.c -------------------------------------------------------------------------------- /labs/lab05/ej4/c/clone_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/c/clone_ptr.h -------------------------------------------------------------------------------- /labs/lab05/ej4/d/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab05/ej4/d/clone.c -------------------------------------------------------------------------------- /labs/lab06/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/README.pdf -------------------------------------------------------------------------------- /labs/lab06/ej0/a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/a/Makefile -------------------------------------------------------------------------------- /labs/lab06/ej0/a/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/a/main.c -------------------------------------------------------------------------------- /labs/lab06/ej0/a/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/a/queue.c -------------------------------------------------------------------------------- /labs/lab06/ej0/a/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/a/queue.h -------------------------------------------------------------------------------- /labs/lab06/ej0/a/queue_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/a/queue_helpers.c -------------------------------------------------------------------------------- /labs/lab06/ej0/a/queue_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/a/queue_helpers.h -------------------------------------------------------------------------------- /labs/lab06/ej0/b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/b/Makefile -------------------------------------------------------------------------------- /labs/lab06/ej0/b/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/b/main.c -------------------------------------------------------------------------------- /labs/lab06/ej0/b/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/b/queue.c -------------------------------------------------------------------------------- /labs/lab06/ej0/b/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/b/queue.h -------------------------------------------------------------------------------- /labs/lab06/ej0/b/queue_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/b/queue_helpers.c -------------------------------------------------------------------------------- /labs/lab06/ej0/b/queue_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/b/queue_helpers.h -------------------------------------------------------------------------------- /labs/lab06/ej0/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/c/Makefile -------------------------------------------------------------------------------- /labs/lab06/ej0/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/c/main.c -------------------------------------------------------------------------------- /labs/lab06/ej0/c/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/c/queue.c -------------------------------------------------------------------------------- /labs/lab06/ej0/c/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/c/queue.h -------------------------------------------------------------------------------- /labs/lab06/ej0/c/queue_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/c/queue_helpers.c -------------------------------------------------------------------------------- /labs/lab06/ej0/c/queue_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/c/queue_helpers.h -------------------------------------------------------------------------------- /labs/lab06/ej0/input/empty.in: -------------------------------------------------------------------------------- 1 | empty: 1 2 | -------------------------------------------------------------------------------- /labs/lab06/ej0/input/example-easy.in: -------------------------------------------------------------------------------- 1 | empty: 0 2 | 1 2 3 4 5 3 | -------------------------------------------------------------------------------- /labs/lab06/ej0/input/example-sorted.in: -------------------------------------------------------------------------------- 1 | empty: 0 2 | -1 0 2 3 8 3 | -------------------------------------------------------------------------------- /labs/lab06/ej0/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | empty: 0 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab06/ej0/input/sorted-asc-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/input/sorted-asc-100.in -------------------------------------------------------------------------------- /labs/lab06/ej0/input/sorted-asc-10000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/input/sorted-asc-10000.in -------------------------------------------------------------------------------- /labs/lab06/ej0/input/sorted-desc-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/input/sorted-desc-100.in -------------------------------------------------------------------------------- /labs/lab06/ej0/input/unsorted-100000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/input/unsorted-100000.in -------------------------------------------------------------------------------- /labs/lab06/ej0/input/unsorted-200000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej0/input/unsorted-200000.in -------------------------------------------------------------------------------- /labs/lab06/ej1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/Makefile -------------------------------------------------------------------------------- /labs/lab06/ej1/abb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/abb.c -------------------------------------------------------------------------------- /labs/lab06/ej1/abb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/abb.h -------------------------------------------------------------------------------- /labs/lab06/ej1/input/abb_example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/input/abb_example.in -------------------------------------------------------------------------------- /labs/lab06/ej1/input/abb_example2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/input/abb_example2.in -------------------------------------------------------------------------------- /labs/lab06/ej1/input/empty.in: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /labs/lab06/ej1/input/example-unsorted.in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 -1 3 8 0 3 | -------------------------------------------------------------------------------- /labs/lab06/ej1/input/unsorted-100000.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/input/unsorted-100000.in -------------------------------------------------------------------------------- /labs/lab06/ej1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej1/main.c -------------------------------------------------------------------------------- /labs/lab06/ej2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej2/Makefile -------------------------------------------------------------------------------- /labs/lab06/ej2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej2/main.c -------------------------------------------------------------------------------- /labs/lab06/ej2/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej2/string.c -------------------------------------------------------------------------------- /labs/lab06/ej2/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej2/string.h -------------------------------------------------------------------------------- /labs/lab06/ej3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/Makefile -------------------------------------------------------------------------------- /labs/lab06/ej3/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/dict.c -------------------------------------------------------------------------------- /labs/lab06/ej3/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/dict.h -------------------------------------------------------------------------------- /labs/lab06/ej3/dict_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/dict_helpers.c -------------------------------------------------------------------------------- /labs/lab06/ej3/dict_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/dict_helpers.h -------------------------------------------------------------------------------- /labs/lab06/ej3/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/helpers.c -------------------------------------------------------------------------------- /labs/lab06/ej3/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/helpers.h -------------------------------------------------------------------------------- /labs/lab06/ej3/input/large.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/input/large.dic -------------------------------------------------------------------------------- /labs/lab06/ej3/input/nombres.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/input/nombres.dic -------------------------------------------------------------------------------- /labs/lab06/ej3/key_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/key_value.h -------------------------------------------------------------------------------- /labs/lab06/ej3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/main.c -------------------------------------------------------------------------------- /labs/lab06/ej3/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/string.c -------------------------------------------------------------------------------- /labs/lab06/ej3/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/lab06/ej3/string.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/a.txt -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/array_helpers.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/array_helpers.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/flight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/flight.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/flight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/flight.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/inputs/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/inputs/example11.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/inputs/example11.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/inputs/example34.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/inputs/example34.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2022-04-28 kickstart (Tema A)/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/Parcial 04-05 Tema A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/Parcial 04-05 Tema A.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A.tar.gz -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/a.txt -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/array_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/array_helpers.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/array_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/array_helpers.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/bakery_product.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/bakery_product.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/bakery_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/bakery_product.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_85.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_85.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_86.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_86.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_87.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_87.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_92.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_92.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_94.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_94.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_96.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_96.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_99.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/inputs/example_99.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 1 2023-04-05 kickstart (Tema A)/kickstart-tema-A/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_a.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_a.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_b.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_b.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_c.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_ordered.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/input/hospital_ordered.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/pqueue.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/Parcial 2 2022-06-02 (Tema A)/pqueue.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema A)/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema A)/readme.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_a.in: -------------------------------------------------------------------------------- 1 | 456 2 2 | 686 4 3 | 454 1 4 | 345 3 5 | -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_b.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_b.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_c.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_ordered.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/input/example_ordered.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/pstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/pstack.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/pstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/Parcial 2 2022-06-02 (Tema B)/pstack.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-02 (Tema B)/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-02 (Tema B)/readme.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_a.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_a.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_b.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_b.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_c.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_ordered.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/input/hospital_ordered.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/pqueue.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/Parcial 2 2022-06-07 (Tema C)/pqueue.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-06-07 (Tema C)/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-06-07 (Tema C)/readme.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_a.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_a.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_b.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_b.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_c.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_ordered.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/input/example_ordered.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/pstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/pstack.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/pstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 2 2022-07-06 kickstart (Tema D)/pstack.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 7-06 Tema D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2022-07-06 (Tema D)/Parcial 7-06 Tema D.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/Recuperatorio Parcial 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/Recuperatorio Parcial 2.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict_helpers.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/dict_helpers.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/helpers.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/helpers.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/large.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/large.dic -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/nombres.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/nombres.dic -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/pru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/pru.txt -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/pru2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/input/pru2.txt -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/pru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/pru.txt -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/string.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-02-28 Recuperatorio/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-02-28 Recuperatorio/string.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/Parcial 1-06 Tema B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/Parcial 1-06 Tema B.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB.tar.xz -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B.tar.gz -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/different.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/different.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/priority_sorted.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/priority_sorted.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/same_courses.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/same_courses.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/same_grade.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/same_grade.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/same_grade_and_courses.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/input/same_grade_and_courses.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/pstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/pstack.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/pstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-01 (Tema B)/temaB/kickstart-tema-B/pstack.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/.set.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/.set.c.swp -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/.set.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/.set.h.swp -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-easy-005.in: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 2 | -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-sorted-005.in: -------------------------------------------------------------------------------- 1 | 0 -1 2 3 3 2 | -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-unsorted-005.in: -------------------------------------------------------------------------------- 1 | 2 -1 3 2 0 2 | -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-unsorted-015.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-unsorted-015.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-unsorted-100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/example-unsorted-100.in -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/input/exp.in: -------------------------------------------------------------------------------- 1 | 0 1 2 | -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/main.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/main.o -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/readme.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/set.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/set.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/set.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/set.o -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/set_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/set_helpers.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/set_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/set_helpers.h -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-02 (Tema C)/setload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-02 (Tema C)/setload -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/Recuperatorio-TemaD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/Recuperatorio-TemaD.pdf -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/Makefile -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/copy.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/insertl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/insertl.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/insertr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/insertr.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/middlel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/middlel.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/middler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/middler.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/tape.c -------------------------------------------------------------------------------- /labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/labs/parciales/Parcial 2 2023-06-23 Recuperatorio (Tema D)/sol/tape.h -------------------------------------------------------------------------------- /practicos/1.1/ej_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_1/README.md -------------------------------------------------------------------------------- /practicos/1.1/ej_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_2/README.md -------------------------------------------------------------------------------- /practicos/1.1/ej_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_3/README.md -------------------------------------------------------------------------------- /practicos/1.1/ej_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_5/README.md -------------------------------------------------------------------------------- /practicos/1.1/ej_6/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_6/readme.md -------------------------------------------------------------------------------- /practicos/1.1/ej_7/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_7/readme.md -------------------------------------------------------------------------------- /practicos/1.1/ej_8/grafico_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/grafico_a.png -------------------------------------------------------------------------------- /practicos/1.1/ej_8/grafico_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/grafico_a.py -------------------------------------------------------------------------------- /practicos/1.1/ej_8/grafico_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/grafico_b.png -------------------------------------------------------------------------------- /practicos/1.1/ej_8/grafico_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/grafico_b.py -------------------------------------------------------------------------------- /practicos/1.1/ej_8/grafico_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/grafico_c.png -------------------------------------------------------------------------------- /practicos/1.1/ej_8/grafico_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/grafico_c.py -------------------------------------------------------------------------------- /practicos/1.1/ej_8/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_8/readme.md -------------------------------------------------------------------------------- /practicos/1.1/ej_9/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.1/ej_9/readme.md -------------------------------------------------------------------------------- /practicos/1.2/HW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/HW.pdf -------------------------------------------------------------------------------- /practicos/1.2/ej_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_1/README.md -------------------------------------------------------------------------------- /practicos/1.2/ej_1/explicacion_mergesort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_1/explicacion_mergesort.pdf -------------------------------------------------------------------------------- /practicos/1.2/ej_1/merge_sort_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_1/merge_sort_tree.png -------------------------------------------------------------------------------- /practicos/1.2/ej_1/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_1/tree.py -------------------------------------------------------------------------------- /practicos/1.2/ej_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_2/README.md -------------------------------------------------------------------------------- /practicos/1.2/ej_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_3/README.md -------------------------------------------------------------------------------- /practicos/1.2/ej_3/quick_sort_tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_3/quick_sort_tree -------------------------------------------------------------------------------- /practicos/1.2/ej_3/quick_sort_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_3/quick_sort_tree.png -------------------------------------------------------------------------------- /practicos/1.2/ej_3/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.2/ej_3/tree.py -------------------------------------------------------------------------------- /practicos/1.3/ej_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/1.3/ej_6/README.md -------------------------------------------------------------------------------- /practicos/2.1/ej_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/2.1/ej_1/README.md -------------------------------------------------------------------------------- /practicos/2.1/ej_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/2.1/ej_2/README.md -------------------------------------------------------------------------------- /practicos/3.1/ej5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/3.1/ej5.md -------------------------------------------------------------------------------- /practicos/pru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/practicos/pru -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diofanto33/AyEDII/HEAD/src/README.md --------------------------------------------------------------------------------