A Project Report Sorting Visualizer
A Project Report Sorting Visualizer
A Project Report Sorting Visualizer
A PROJECT REPORT
ON
SORTING VISUALIZER
SUBMITTED BY
November 2021
SORTING VISUALIZER
A PROJECT REPORT
ON
SORTING VIZUALIZER
SUBMITTED BY
November 2021
CANDIDATE’S DECLARATION
KHUSHDEEP
RIMT UNIVERSITY
26/11/2021
CERTIFICATE
This is to certify that the project titled “SORTING VISUALIZER” is the bona fide
work carried out by KHUSHDEEP & 18010102008 in partial fulfillment of the
requirement for the award of degree of the B. Tech. (Computer Science &
Engineering) submitted in Department of Computer Science & Engineering, at
RIMT University, MandiGobindgarh is an authentic record of my own work
carried out during a period from 12/09/2021 to 24/11/2021. The Major Project
Viva-Voce Examination has been held on 26/11/2021.
Department of CSE.
LIST OF FIGURES
ACKNOWLEDGEMENT
To make the student easier to study how the operations on data structure
and various algorithms are performed. The data structures can be stack,
queue and linked list etc and algorithms are sorting like bubble sort,
insertion sort etc.
Programming language
1.HTML
2.JAVA
CHAPTER 1
1. INTRODUCTION
1.2 Objectives
To study how the operations on data structure and algorithms are performed. And how
the values are compared in a sorting algorithms and swapped. Total Number of
comparison and exchanges performed in a sorting algorithm. And the corresponding code
performed while sorting. .To get a clear idea about various data structures and operations
on it. And how can we implement a data structure.
1.3.1 ARRAY:
An array is a collection of items stored at contiguous memory locations. The idea is to
store multiple items of the same type together. This makes it easier to calculate the
position of each element by simply adding an offset to a base value, i.e., the memory
location of the first element of the array (generally denoted by the name of the array).
The base value is index 0 and the difference between the two indexes is the offset.
1.4 Algorithms