├── README.md ├── practice └── README.md ├── week01 ├── .gitignore ├── PA_inner_prod │ ├── PA.in │ ├── PA.out │ ├── PA.pdf │ ├── PA.py │ ├── PA.tex │ └── gen.py ├── PB_vec_len │ ├── GB.py │ ├── PB.cpp │ ├── PB.in │ ├── PB.out │ ├── PB.pdf │ ├── PB.tex │ ├── PB_TLE.py │ └── PB_verify.py ├── PC_sqrt │ ├── GC.py │ ├── PC.in │ ├── PC.out │ ├── PC.pdf │ ├── PC.py │ └── PC.tex ├── PD_inversion │ ├── PD.cpp │ ├── PD.in │ ├── PD.out │ ├── PD.pdf │ └── PD.tex ├── PE_triangle │ ├── PE.cpp │ ├── PE.in │ ├── PE.out │ ├── PE.pdf │ └── PE.tex ├── PF_nim │ ├── PF.cpp │ ├── PF.in │ ├── PF.out │ ├── PF.pdf │ ├── PF.py │ └── PF.tex ├── PG_mod_inv │ ├── GG.py │ ├── PG.in │ ├── PG.java │ ├── PG.out │ ├── PG.pdf │ └── PG.tex └── PH_thunder │ ├── PH.c │ ├── PH.in │ ├── PH.out │ ├── PH.pdf │ └── PH.tex ├── week02 ├── AC-cf319_div2_A.c ├── AC-cf340_div2_A.cpp ├── AC-cf340_div2_B.cpp ├── CE-cf340_div2_A.cpp ├── MLE-cf319_div2_A.c ├── RE-cf319_div2_A.c ├── README.md ├── TLE-cf319_div2_A.c ├── TLE-cf340_div2_B.cpp ├── WA-cf340_div2_A.cpp ├── eof.in.txt ├── eof_fgets.cpp ├── eof_fgets.out.txt ├── eof_scanf.cpp ├── eof_scanf.out.txt ├── hw │ ├── PA.pdf │ ├── PA.tex │ ├── PB.pdf │ └── PB.tex ├── token_on_a_line.cpp ├── token_on_a_line.in.txt └── token_on_a_line.out.txt ├── week03 ├── PC.pdf ├── PD.pdf ├── PSPT_lec02_complexity.pdf ├── PSPT_lec03_joseph.pdf ├── PSPT_lec06_cstring.pdf ├── README.md ├── lec02.pdf ├── map-iter.c++11.cpp ├── next_permutation.cpp ├── set-iter.c++11.cpp └── set.cpp ├── week04 ├── AC-uva11742-next_permutation.cpp ├── AC-uva725.cpp ├── PE.pdf ├── PF.pdf ├── PSPT_lec09_enumeration.pdf ├── README.md ├── comb.cpp ├── fast_pair.cpp ├── odd_backtrack.cpp ├── odd_next_perm.cpp ├── perm.c └── slow_pair.cpp ├── week05 ├── ItoA_lec02_intro.pdf ├── ItoA_lec03_dnc.pdf ├── ItoA_lec06_sorting.pdf ├── ItoA_lec07_order_statistics.pdf ├── PSPT_lec10_dnc_ps.pdf ├── README.md └── lec04.pdf ├── week06 └── README.md ├── week07 └── README.md ├── week08 └── README.md ├── week09 └── README.md ├── week10 └── README.md ├── week11 └── README.md ├── week12 └── README.md └── week13 └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/README.md -------------------------------------------------------------------------------- /practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/practice/README.md -------------------------------------------------------------------------------- /week01/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.aux 3 | *.log 4 | a.out 5 | *ref 6 | -------------------------------------------------------------------------------- /week01/PA_inner_prod/PA.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PA_inner_prod/PA.in -------------------------------------------------------------------------------- /week01/PA_inner_prod/PA.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PA_inner_prod/PA.out -------------------------------------------------------------------------------- /week01/PA_inner_prod/PA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PA_inner_prod/PA.pdf -------------------------------------------------------------------------------- /week01/PA_inner_prod/PA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PA_inner_prod/PA.py -------------------------------------------------------------------------------- /week01/PA_inner_prod/PA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PA_inner_prod/PA.tex -------------------------------------------------------------------------------- /week01/PA_inner_prod/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PA_inner_prod/gen.py -------------------------------------------------------------------------------- /week01/PB_vec_len/GB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/GB.py -------------------------------------------------------------------------------- /week01/PB_vec_len/PB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB.cpp -------------------------------------------------------------------------------- /week01/PB_vec_len/PB.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB.in -------------------------------------------------------------------------------- /week01/PB_vec_len/PB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB.out -------------------------------------------------------------------------------- /week01/PB_vec_len/PB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB.pdf -------------------------------------------------------------------------------- /week01/PB_vec_len/PB.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB.tex -------------------------------------------------------------------------------- /week01/PB_vec_len/PB_TLE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB_TLE.py -------------------------------------------------------------------------------- /week01/PB_vec_len/PB_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PB_vec_len/PB_verify.py -------------------------------------------------------------------------------- /week01/PC_sqrt/GC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PC_sqrt/GC.py -------------------------------------------------------------------------------- /week01/PC_sqrt/PC.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PC_sqrt/PC.in -------------------------------------------------------------------------------- /week01/PC_sqrt/PC.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PC_sqrt/PC.out -------------------------------------------------------------------------------- /week01/PC_sqrt/PC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PC_sqrt/PC.pdf -------------------------------------------------------------------------------- /week01/PC_sqrt/PC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PC_sqrt/PC.py -------------------------------------------------------------------------------- /week01/PC_sqrt/PC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PC_sqrt/PC.tex -------------------------------------------------------------------------------- /week01/PD_inversion/PD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PD_inversion/PD.cpp -------------------------------------------------------------------------------- /week01/PD_inversion/PD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PD_inversion/PD.in -------------------------------------------------------------------------------- /week01/PD_inversion/PD.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PD_inversion/PD.out -------------------------------------------------------------------------------- /week01/PD_inversion/PD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PD_inversion/PD.pdf -------------------------------------------------------------------------------- /week01/PD_inversion/PD.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PD_inversion/PD.tex -------------------------------------------------------------------------------- /week01/PE_triangle/PE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PE_triangle/PE.cpp -------------------------------------------------------------------------------- /week01/PE_triangle/PE.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PE_triangle/PE.in -------------------------------------------------------------------------------- /week01/PE_triangle/PE.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PE_triangle/PE.out -------------------------------------------------------------------------------- /week01/PE_triangle/PE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PE_triangle/PE.pdf -------------------------------------------------------------------------------- /week01/PE_triangle/PE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PE_triangle/PE.tex -------------------------------------------------------------------------------- /week01/PF_nim/PF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PF_nim/PF.cpp -------------------------------------------------------------------------------- /week01/PF_nim/PF.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PF_nim/PF.in -------------------------------------------------------------------------------- /week01/PF_nim/PF.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PF_nim/PF.out -------------------------------------------------------------------------------- /week01/PF_nim/PF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PF_nim/PF.pdf -------------------------------------------------------------------------------- /week01/PF_nim/PF.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week01/PF_nim/PF.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PF_nim/PF.tex -------------------------------------------------------------------------------- /week01/PG_mod_inv/GG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PG_mod_inv/GG.py -------------------------------------------------------------------------------- /week01/PG_mod_inv/PG.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PG_mod_inv/PG.in -------------------------------------------------------------------------------- /week01/PG_mod_inv/PG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PG_mod_inv/PG.java -------------------------------------------------------------------------------- /week01/PG_mod_inv/PG.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PG_mod_inv/PG.out -------------------------------------------------------------------------------- /week01/PG_mod_inv/PG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PG_mod_inv/PG.pdf -------------------------------------------------------------------------------- /week01/PG_mod_inv/PG.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PG_mod_inv/PG.tex -------------------------------------------------------------------------------- /week01/PH_thunder/PH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PH_thunder/PH.c -------------------------------------------------------------------------------- /week01/PH_thunder/PH.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PH_thunder/PH.in -------------------------------------------------------------------------------- /week01/PH_thunder/PH.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PH_thunder/PH.out -------------------------------------------------------------------------------- /week01/PH_thunder/PH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PH_thunder/PH.pdf -------------------------------------------------------------------------------- /week01/PH_thunder/PH.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week01/PH_thunder/PH.tex -------------------------------------------------------------------------------- /week02/AC-cf319_div2_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/AC-cf319_div2_A.c -------------------------------------------------------------------------------- /week02/AC-cf340_div2_A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/AC-cf340_div2_A.cpp -------------------------------------------------------------------------------- /week02/AC-cf340_div2_B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/AC-cf340_div2_B.cpp -------------------------------------------------------------------------------- /week02/CE-cf340_div2_A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/CE-cf340_div2_A.cpp -------------------------------------------------------------------------------- /week02/MLE-cf319_div2_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/MLE-cf319_div2_A.c -------------------------------------------------------------------------------- /week02/RE-cf319_div2_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/RE-cf319_div2_A.c -------------------------------------------------------------------------------- /week02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/README.md -------------------------------------------------------------------------------- /week02/TLE-cf319_div2_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/TLE-cf319_div2_A.c -------------------------------------------------------------------------------- /week02/TLE-cf340_div2_B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/TLE-cf340_div2_B.cpp -------------------------------------------------------------------------------- /week02/WA-cf340_div2_A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/WA-cf340_div2_A.cpp -------------------------------------------------------------------------------- /week02/eof.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/eof.in.txt -------------------------------------------------------------------------------- /week02/eof_fgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/eof_fgets.cpp -------------------------------------------------------------------------------- /week02/eof_fgets.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /week02/eof_scanf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/eof_scanf.cpp -------------------------------------------------------------------------------- /week02/eof_scanf.out.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /week02/hw/PA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/hw/PA.pdf -------------------------------------------------------------------------------- /week02/hw/PA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/hw/PA.tex -------------------------------------------------------------------------------- /week02/hw/PB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/hw/PB.pdf -------------------------------------------------------------------------------- /week02/hw/PB.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/hw/PB.tex -------------------------------------------------------------------------------- /week02/token_on_a_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/token_on_a_line.cpp -------------------------------------------------------------------------------- /week02/token_on_a_line.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/token_on_a_line.in.txt -------------------------------------------------------------------------------- /week02/token_on_a_line.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week02/token_on_a_line.out.txt -------------------------------------------------------------------------------- /week03/PC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/PC.pdf -------------------------------------------------------------------------------- /week03/PD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/PD.pdf -------------------------------------------------------------------------------- /week03/PSPT_lec02_complexity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/PSPT_lec02_complexity.pdf -------------------------------------------------------------------------------- /week03/PSPT_lec03_joseph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/PSPT_lec03_joseph.pdf -------------------------------------------------------------------------------- /week03/PSPT_lec06_cstring.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/PSPT_lec06_cstring.pdf -------------------------------------------------------------------------------- /week03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/README.md -------------------------------------------------------------------------------- /week03/lec02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/lec02.pdf -------------------------------------------------------------------------------- /week03/map-iter.c++11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/map-iter.c++11.cpp -------------------------------------------------------------------------------- /week03/next_permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/next_permutation.cpp -------------------------------------------------------------------------------- /week03/set-iter.c++11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/set-iter.c++11.cpp -------------------------------------------------------------------------------- /week03/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week03/set.cpp -------------------------------------------------------------------------------- /week04/AC-uva11742-next_permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/AC-uva11742-next_permutation.cpp -------------------------------------------------------------------------------- /week04/AC-uva725.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/AC-uva725.cpp -------------------------------------------------------------------------------- /week04/PE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/PE.pdf -------------------------------------------------------------------------------- /week04/PF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/PF.pdf -------------------------------------------------------------------------------- /week04/PSPT_lec09_enumeration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/PSPT_lec09_enumeration.pdf -------------------------------------------------------------------------------- /week04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/README.md -------------------------------------------------------------------------------- /week04/comb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/comb.cpp -------------------------------------------------------------------------------- /week04/fast_pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/fast_pair.cpp -------------------------------------------------------------------------------- /week04/odd_backtrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/odd_backtrack.cpp -------------------------------------------------------------------------------- /week04/odd_next_perm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/odd_next_perm.cpp -------------------------------------------------------------------------------- /week04/perm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/perm.c -------------------------------------------------------------------------------- /week04/slow_pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week04/slow_pair.cpp -------------------------------------------------------------------------------- /week05/ItoA_lec02_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/ItoA_lec02_intro.pdf -------------------------------------------------------------------------------- /week05/ItoA_lec03_dnc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/ItoA_lec03_dnc.pdf -------------------------------------------------------------------------------- /week05/ItoA_lec06_sorting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/ItoA_lec06_sorting.pdf -------------------------------------------------------------------------------- /week05/ItoA_lec07_order_statistics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/ItoA_lec07_order_statistics.pdf -------------------------------------------------------------------------------- /week05/PSPT_lec10_dnc_ps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/PSPT_lec10_dnc_ps.pdf -------------------------------------------------------------------------------- /week05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/README.md -------------------------------------------------------------------------------- /week05/lec04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week05/lec04.pdf -------------------------------------------------------------------------------- /week06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week06/README.md -------------------------------------------------------------------------------- /week07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week07/README.md -------------------------------------------------------------------------------- /week08/README.md: -------------------------------------------------------------------------------- 1 | ## Holiday 2 | -------------------------------------------------------------------------------- /week09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week09/README.md -------------------------------------------------------------------------------- /week10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week10/README.md -------------------------------------------------------------------------------- /week11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week11/README.md -------------------------------------------------------------------------------- /week12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week12/README.md -------------------------------------------------------------------------------- /week13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzshieh/cp1_2017/HEAD/week13/README.md --------------------------------------------------------------------------------