├── .gitignore ├── README.md ├── constant.py ├── examples ├── example1.js ├── example2.js ├── example3.js ├── example4.js ├── example5.js ├── example6.js └── example7.js ├── exponential.py ├── factoial_problem.py ├── graphs ├── constant_vs_linear.png ├── linear_vs_logarithmic.png ├── linear_vs_logarithmic_vs_loglinear.png ├── linear_vs_polynomial.png └── polynomial_vs_exponential_2.png ├── images ├── big_o_explanation.png ├── big_o_graph.png ├── example5_and_example6.jpg ├── example7.jpg ├── exponential.HEIC ├── factorial.HEIC ├── how_to_simplify.png └── simplifying.png ├── lecture_notes ├── constant.png ├── exponential.png ├── factorial.png ├── linear.png ├── loglinear_graph.png ├── logrithmic_1.png ├── logrithmic_2.png ├── polynomials.png ├── simplify_product.png └── simplify_sums.png ├── linear.py ├── logarithmic.py ├── loglinear.py └── polynomial.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/README.md -------------------------------------------------------------------------------- /constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/constant.py -------------------------------------------------------------------------------- /examples/example1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example1.js -------------------------------------------------------------------------------- /examples/example2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example2.js -------------------------------------------------------------------------------- /examples/example3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example3.js -------------------------------------------------------------------------------- /examples/example4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example4.js -------------------------------------------------------------------------------- /examples/example5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example5.js -------------------------------------------------------------------------------- /examples/example6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example6.js -------------------------------------------------------------------------------- /examples/example7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/examples/example7.js -------------------------------------------------------------------------------- /exponential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/exponential.py -------------------------------------------------------------------------------- /factoial_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/factoial_problem.py -------------------------------------------------------------------------------- /graphs/constant_vs_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/graphs/constant_vs_linear.png -------------------------------------------------------------------------------- /graphs/linear_vs_logarithmic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/graphs/linear_vs_logarithmic.png -------------------------------------------------------------------------------- /graphs/linear_vs_logarithmic_vs_loglinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/graphs/linear_vs_logarithmic_vs_loglinear.png -------------------------------------------------------------------------------- /graphs/linear_vs_polynomial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/graphs/linear_vs_polynomial.png -------------------------------------------------------------------------------- /graphs/polynomial_vs_exponential_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/graphs/polynomial_vs_exponential_2.png -------------------------------------------------------------------------------- /images/big_o_explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/big_o_explanation.png -------------------------------------------------------------------------------- /images/big_o_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/big_o_graph.png -------------------------------------------------------------------------------- /images/example5_and_example6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/example5_and_example6.jpg -------------------------------------------------------------------------------- /images/example7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/example7.jpg -------------------------------------------------------------------------------- /images/exponential.HEIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/exponential.HEIC -------------------------------------------------------------------------------- /images/factorial.HEIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/factorial.HEIC -------------------------------------------------------------------------------- /images/how_to_simplify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/how_to_simplify.png -------------------------------------------------------------------------------- /images/simplifying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/images/simplifying.png -------------------------------------------------------------------------------- /lecture_notes/constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/constant.png -------------------------------------------------------------------------------- /lecture_notes/exponential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/exponential.png -------------------------------------------------------------------------------- /lecture_notes/factorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/factorial.png -------------------------------------------------------------------------------- /lecture_notes/linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/linear.png -------------------------------------------------------------------------------- /lecture_notes/loglinear_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/loglinear_graph.png -------------------------------------------------------------------------------- /lecture_notes/logrithmic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/logrithmic_1.png -------------------------------------------------------------------------------- /lecture_notes/logrithmic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/logrithmic_2.png -------------------------------------------------------------------------------- /lecture_notes/polynomials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/polynomials.png -------------------------------------------------------------------------------- /lecture_notes/simplify_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/simplify_product.png -------------------------------------------------------------------------------- /lecture_notes/simplify_sums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/lecture_notes/simplify_sums.png -------------------------------------------------------------------------------- /linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/linear.py -------------------------------------------------------------------------------- /logarithmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/logarithmic.py -------------------------------------------------------------------------------- /loglinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/loglinear.py -------------------------------------------------------------------------------- /polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romebell/algorithms_complexity/HEAD/polynomial.py --------------------------------------------------------------------------------