Posts

Bubble Sort

Image
Contents Bubble sort . 2 Definition . 2 How bubble sort works? . 2 Bubble sort program in c . 2 Sample of program .. 2                                            Bubble Sort  Definition Bubble sort is a sorting algorithm that works by repeatedly stepping through lists that need to be sorted, comparing each pair of adjacent items and swapping them if they are in the wrong order. This passing procedure is repeated until no swaps are required, indicating that the list is sorted. Bubble sort gets its name because smaller elements bubble toward the top of the list. Bubble sort is also referred to as sinking sort or comparison sort. How bubble sort works? We take an unsorted array for our example. 14 33 27 35 10 Bubble sort starts with very first two elements, comparing them to check which one is ...

Car Dealership DATABASE

Image
Contents CAR DEALERSHIP DATABASE .. 2 DATABASE .. 2 Purpose . 2 System overview .. 2 Hardware and software requirements . 2 Hardware . 2 Software (Operating System) . 2 Microsoft 2 Data Dictionary . 3 1.       Location table . 3 2.       Salesperson . 3 3.       Customer . 3 4.       Manufacturer . 3 5.       Vehicle . 4 6.       Model 4 7.       Insurance policies . 4 8.       Insurance company . 5 9.       Deal 5 10.         Customer visit 5 Entity relationship diagram .. 6 MySQL Queries . 7 CAR DEALERSHIP DATABASE DATABASE Systematically organized or structured repository of indexed information (usually as a group of l...