• Martin Thoma
  • Home
  • Categories
  • Tags
  • Archives
  • Support me

Recent Posts

Sorting Big Data

Sorting Big Data

Big Data was a common buzzword in industry in 2012 until 2017. It is still common, but hopefully less of a buzzword. Now other buzzwords are more common: trends.embed.renderExploreWidget("TIMESERIES", {"comparisonItem":[{"keyword":"/m/0bs2j8q","geo":"","time":"2008-01-01 2020-03-24"},{"keyword":"/m/01hyh_","geo":"","time":"2008-01-01 2020-03-24"},{"keyword":"/m/0138n0j1 … Read More »
How to sort with Java

How to sort with Java

Sorting is a very basic task that every programmer should be able to solve. In Python, you have sort and sorted. In C++, you can use operator overloading. I'll now tell you how to do basic sorting with Java. I will not write about natural language sorting or language-aware sorting … Read More »
Übersicht über Sortieralgorithmen

Übersicht über Sortieralgorithmen

Eine Übersicht über gängige Sortieralgorithmen: Vergleichsbasiert Name Laufzeit stabil in-place B AVG W Selectionsort $\Theta (n^2)$ $\Theta (n^2)$ $\Theta (n^2)$ ✘[1] ✔ Bubblesort $\Theta (n)$ $\cal{O}(n^2)$ $\Theta (n^2)$ ✔ ✔ Insertionsort $\Theta (n)$ $\Theta (n^2)$ $\Theta (n^2)$ ✔ ✔ Quicksort $\Theta (n \cdot \log(n))$ $\Theta … Read More »
  • Martin Thoma - A blog about Code, the Web and Cyberculture
  • E-mail subscription
  • RSS-Feed
  • Privacy/Datenschutzerklärung
  • Impressum
  • Powered by Pelican. Theme: Elegant by Talha Mansoor