Fashion Show Algorithm

It is a general assumption that fashion shows involve two basic steps: Music and lighting, and Outfits and walking. But this is a false notion, as a lot of effort and planning is required to execute a successful show. As models, we even take notes to remember different sequences. Sequences are the sub parts of … Continue reading Fashion Show Algorithm

HEAPS AND HEAPSORT

  HEAPS: The (binary) heap data structure is an array object that can be viewed as a nearly complete binary tree. Each node of the tree corresponds to an element of the array that stores the value in the node The tree is completely filled on all levels except possibly the lowest, which is filled … Continue reading HEAPS AND HEAPSORT

WI-FI

Wi-Fi is a popular wireless networking technology. Wi-Fi stands for "wireless fidelity". The Wi-Fi was invented by NCR corporation /AT&T in Netherlands in 1991. By using this technology, we can exchange the information between two or more devices. Wi-Fi has been developed for mobile computing devices, such as laptops, but it is now extensively used … Continue reading WI-FI

Algorithms

PROBLEM STATEMENT: Algorithm for working of an alarm Alarm needs to be set for a specific time for the user to wake up at that time. We may give options to the user like, switching off the alarm or snoozing it etc. SOLUTION: // Input : Give some standard time //Output : we will get … Continue reading Algorithms

MERGE SORT

Merge Sort is an algorithm which was invented by John Van Neumann all the way back in 1945. So the question arises, “Why Merge Sort?” Why because, Merge sort offers improvement over Selection, Insertion & Bubble Sort as they lack in performance, which scales with (n2) with an input array of n elements whereas the … Continue reading MERGE SORT