Relative Content

Tag Archive for cloopstime-complexity

C loops: Algorithmic complexity and style

I’ve been programming in Python, R and Julia for quite some time now, but I’ve only recently started to learn C. The language is extraordinary. However, since it provides less of a built-in interface, most algorithms are done from scratch. For example, instead of a simple Julia call to sort(my_array), in C I would have to program my own sorting algorithm.