Home » Project Material » Implementation Of Sorting Algorithms

Implementation Of Sorting Algorithms

7 Chapters
|
61 Pages
|
8,596 Words
|
COMPUTER ENGINEERING

INSTRUCTIONS:

  • You are perusing the project material titled “Implementation Of Sorting Algorithms.”
  • The project material on Implementation Of Sorting Algorithms is available for instant download.
  • Preview Chapter One of Implementation Of Sorting Algorithms at no cost.
  • To access the complete project material for Implementation Of Sorting Algorithms, kindly make a donation to support the ongoing maintenance and operation of this website.
  • The provided work on Implementation Of Sorting Algorithms is intended solely for academic research purposes and should be utilized strictly as a set of guidelines.
  • Our objective in distributing Implementation Of Sorting Algorithms is to aid individuals unfamiliar with project research, specifically writers seeking assistance in this area.
  • Kindly refrain from directly replicating the content provided in Implementation Of Sorting Algorithms materials.
  • Feel free to reference “Implementation Of Sorting Algorithms” in your work, provided that you paraphrase appropriately.
  • Unauthorized reproduction of Implementation Of Sorting Algorithms content is prohibited under our Terms of Use.
  • UniProjects assumes no responsibility if you replicate the content of this Implementation Of Sorting Algorithms.
ABSTRACT

This research work took theoretical and empirical studies that have been done over the past years on sorting algorithms and its variants. The study includes a comparative sorting algorithms (i.e. Bubble sort, shell sort, straight insertion sort quick sort, simple sort etc.) the same criteria such as coding memory space used meaning efficiency as in the time used by the computer argument on the number of comparison. Data flow diagrams and process to evaluate the performance of these sorting techniques. The programming language used to implement these sorting algorithms is BASIC.

The various chapter in this research work is logically arranged to reflect in each stage in the research process, the adopting chapters ranges from introduction literature review, systems investigation/analysis, system programming/ implementation to the researchers, recommendations and conclusion. The coded program and its output are also attached.

TABLE OF CONTENT

Title Page
Certification
Dedication
Acknowledgement
Abstract
Table of Content

CHAPTER ONE
1.0 Introduction 1
1.1 Background of the Study 1-3
1.2 Statement of Problem 3-4
1.3 Objective/Purpose of the Study 4
1.4 Significance of the Study 4-5
1.5 Scope and Limitation of the Study 5
1.6 Organization of Work 6

CHAPTER TWO
Review of Related Literature to the Topic 7
2.0 A Reflective View on Sorting 7-8
2.1 Classification of Sorting 8
2.2 Internal Sorting Techniques 9
2.2.1 Bubble Sort 9-10
2.2.2 Heap Sort 11-12
2.2.3 Insertion Sort 13-14
2.2.4 Merge Sort 15-16
2.2.5 Quick Sort 16-18
2.2.6 Selection Sort 18-19
2.2.7 Shell Sort 19-20
2.2.8 Simple Sort 20-22
2.3 External Sorting Techniques 22
2.3.1 Method of External Sort 22-23
2.3.2 Disk Sort 24
2.3.3 Strategies for Choosing Sorting Method 24-25

CHAPTER THREE
3.0 System Analysis and Investigation 26
3.1 Analysis of Sorting Algorithms 26-27
3.2 Memory Space Allocation 27-29
3.3 Comparative Study of the Algorithm 30
3.4 Research Methodology 31-32

CHAPTER FOUR
4.0 Program Design and Implementation 33
4.1 Discussion of Findings 33
4.2 Design of Logic of Sorting Algorithms 34
4.3 Pseudo code of Logic Design 34-36
4.4 Program Flowchart

CHAPTER FIVE
5.0 Recommendation and Conclusion and 43
5.1 Problems Encountered during the
Research work 43
5.2 Conclusion 44
5.3 Recommendation 44-45
Reference 46-56

CHAPTER ONE

INTRODUCTION
1.1 BACKGROUND OF STUDY

The need of information in general
Mangers need information to perform their function and not data. Information is to data what is finished product is to raw materials used in producing it. Information is the manger in his decision-making activity.
Information is to business system what blood circulatory system is to human body. When information fails to reach any part of the organization system, due to structural deficiency, that part become anemia and soon becomes a liability to the rest of the supper system. This is why the system theory states that every system is held together by information exchange.
For information to retain its quality resources it must have the following qualities: Brief/Detail, Accurate, Rare/Scare, Timeliness/Appropriateness, Frequency/Understanding and Transferable.
Computers are virtually used in all areas of life. It is difficult to see any aspect of the society that has not been affected by some form of computerization. Computer is used in preparing company patrol, record customers sales on items bought from a shop switching of telephone class when lines are overload, give detail of dentists, patients, analyze blood samples, control application in homes etc.
Therefore, computers can be in all sectors in the society such as business, health, and industry education, national development. Before the advent of computer manual method was used in data processing and calculators and the human brain were the only thing used.
This manual method is time wasting and mistake oriented. At present the use of computer in data processing has gone a long way in increasing the credibility of the system. The computer is able to process data quickly; making available information on stock levels slow moving items or trend in demand.
A business establishment equally apply computer in the preparation of payroll. When computer is used for this purpose, it helps to ensure efficiency and accuracy in calculation. In science research like medical, it is used for analysis data produced from experiment for instance in the trial of drugs. It is also a diagnostic tool in hospital, clinic and keeping patient.
In every organization especially an open system or social organization, information is very essential. Since what organization needed is information and not data, there is urgency that proper information should be diffused or be circulated within the organization.
Having defined information as the processed data that is meant to be used by the approved user. It is of paramount demand that no decision be taken in an organization without proper consultation of the computer data processing centre. Therefore, any organization that takes decision without computer analysis is prone to error.
In some real life application of computer, example in sorting information in a given order, often known as automation. Information is sorted in alphabetical order, numerical order either ascending or descending. The use of computer in sorting has eliminated the manually performed method, which is prone to error, mistake and time wasting hence the need for its automation. This is aimed at the automation of this manual method hence eliminating and minimizing the error encountered.

1.2 STATEMENT OF PROBLEM
The method of organization of data in the computer is the main focus of this work. Also the, mismanagement of computer memory and time is another problem to look into for solution. It could be recalled that the necessary and efficiency of sorting activities cannot be over emphasized.
However, this project research is aimed at taking a comprehensive look on some sorting algorithms in BASIC programming languages to access their performance. The above mentioned high-level programming language are used or considered for the implementation of the sorting concept.

1.3 OBJECTIVE/PURPOSE OF THE STUDY
This deals with the presentation of information or data in an appreciable from and also to minimize the time used in searching for items. However, it can be seen that a well-sorted or organized file enhances easy searching of data while unsorted one will pose little or great problem to locate a given item in a large list. However, the comparison process will be based on the following:
(i) Memory space used
(ii) Number of comparison made during sorting process
(iii) Coding based on the sorting algorithm
(iv) Computer.

1.4 SIGNIFICANCE OF THE STUDY
Sorting algorithm was designed to enable the people and the society to be acquainted with arrangement of data and item. Above topic of discussion will make the society to determine and know their stand in the arrangement and organization of data in the memory location and also make proper use and utilization of the computer time.

1.5 SCOPES AND LIMITATION OF THE STUDY
As was stated earlier, it is quite understood that there are lots of sorting technique. This project research will be focusing on the implication of some algorithms. It will also be critically base on the following.
a. The use of linear list (array) as the data structure.
b. Insertion sort, bubble sort, selection sort etc.
c. The use of BASIC as the programming language for coding implementation.

This research work was limited by some ups and downs, which was encountered at the process of carrying out the research. Some of the problems that limited the finding of research work are as follow:
(a) Lack of resourceful library for material that would aid further investigations and finding.
(b) Limited time to carryout more research as the research work is coupled with the other academic statues.
(c) Financial instability, which constituted more to the limitation as related to the movement from one place to another for materials for further aids towards the topic of discussion.

1.6 ORGANIZATION OF WORK
This is a project work that is written to analyze the implementation of sorting algorithm. This project is divided into five chapters. Chapter one is the introduction; chapter two is the literature review of the project topic under discussion. Chapter three is the research methodology; chapter four is the analysis of the technical procedures and various methods of data presentation/programs while chapter five is the summary conclusion and recommendation.

 

 

Frequently Asked Questions

If you’re referencing specific information, quotes, or ideas from “Implementation Of Sorting Algorithms”, provide a citation in the appropriate format such as APA, MLA, or Chicago.

The title page of downloaded document contains information about the author, editor, and publisher of Implementation Of Sorting Algorithms Project material.

Select “Donate & Download,” on top of “Implementation Of Sorting Algorithms” and upon completing your donation, you will be directed to the download page or you can chat with us for alternative donation methods.

You have the opportunity to upload content similar to “Implementation Of Sorting Algorithms” and receive payment for each download of the material. Engage in a conversation with our representative if you have any Project topics related to Implementation Of Sorting Algorithms.