-
Who am I?
23 years old, last year Computer Science student at AGH University of Science and Technology. Interested in Java and distributed systems.
-
Recent Articles
-
Categories
- algorithms (4)
- c++ (4)
- coding (15)
- enterprise edition (7)
- java (11)
- operating systems (4)
- snippets (5)
- standard edition (4)
- unix (4)
-
Top 8 last month
- [C++] Counting sort: faster than quicksort! (450 views)
- [C++] Radix sort - integers sorting (401 views)
- [Java] Example of Spring IoC (Inversion of Control) - dependency injection (318 views)
- [Java] EclipseLink - getting started (314 views)
- [C++] Convex hull - Graham algorithm (313 views)
- [Java] Unit tests - JUnit vs TestNG (297 views)
- [C++] List sorting - bucket sort and others (265 views)
- [Java] Spring IoC Container - autowiring (218 views)
Tag Archives: quicksort
[C++] Counting sort: faster than quicksort!
Probably you know sorting at good level, written quicksort and other fast algorithms thousand times. The best sorting algorithms which as main operation has comparing one value to another has O(nlogn) complexity. With the assumption of comparing values they couldn’t … Continue reading