C and C++ Programming Resources

Using an Image CDN to Speed Up Page Loading

Using an Image CDN to Speed Up Page Loading

In this article, we will study the benefits of having an image CDN, show how it differs from the regular image optimization tools, and outline six cases when you should consider setting up an image CDN to solve technical issues.

Selection Sort Video – Algorithm Explanation

Selection Sort Video – Algorithm Explanation

Selection sort is an in-place comparison-based algorithm in which the list is divided into two parts, the sorted part at the left end and the unsorted part at the right end. Initially, the sorted part is empty and the unsorted part is the entire list.

Quicksort Video – Algorithm Explanation

Quicksort Video – Algorithm Explanation

Elon Musk
Discover the mind behind the innovations – Elon Musk by Walter Isaacson, now on Audible. Dive into the life of a visionary shaping our future!
View on Amazon

Quicksort is an efficient sorting algorithm based on Divide and Conquer rule. It works by selecting a ‘pivot’ element from the array and partitioning the other elements into two sub-arrays and recursively sorting them.