Home     Blog

Sorting

Sorting is the process of arranging elements in some logical order.

Sorting methods are classified into the following categories:

  • External sorting: This deals with sorting of data stored in external files. This method is used when the volume of data is very large and cannot be held in a computer’s RAM.
  • Internal sorting: This deals with sorting of data held in the RAM of a computer.

Sorting Methods

The following are links to tutorials on some of the most popular sorting methods:sorting Sorting

VN:F [1.9.17_1161]
Rating: 10.0/10 (1 vote cast)
Sorting, 10.0 out of 10 based on 1 rating
Follow Will.Spencer on

Comments (2)

 

  1. deeparani says:

    which sorting method is best in C language.What are the applications of sorting methods.

    VA:F [1.9.17_1161]
    Rating: 0.0/5 (0 votes cast)
  2. Ahila says:

    i also want to know which one best
    sorting algorithm?

    VA:F [1.9.17_1161]
    Rating: 0.0/5 (0 votes cast)

Leave a Reply

Related Posts

  • How to Use the Unix Sort Command

    The Unix sort command is a command for the Unix family of operating systems. It is designed to sort whatever information you give it. The command can be used for a variety of purposes, but it is most frequently employed when there are a number of different files which need to be ordered in some [...]...


  • Bucket/Radix Sort

    Most people use the bucket sort method when sorting a list of names in alphabetical order. The procedure is: First, the names are grouped according to the first letter, thus the names are arranged in 26 classes, one for each letter of the alphabet. The first class consists of those names that begin with letter [...]...


  • Merge Sort

    Merging means combining elements of two arrays to form a new array. The simplest way of merging two arrays is to first copy all the elements of one array into a new array and then append all the elements of the second array to the new array. If you want the resultant array to be [...]...


  • Address Calculation Sort

    In this method, a function fn() is applied to each key. The result of this function determines into which of the several sub-files the record is to be placed. The function should have the property that x <= y, fn (x) <= fn (y). Such a function is called order preserving. Thus all of the [...]...


  • JavaScript Tutorials

    JavaScript Tutorials Learn the basics of Javascript with TechFaq! Here you will find the most comprehensive list of JavaScript tutorials and resources along with questions and answers. Date Difference Tutorial This tutorial will show you how to calculate the difference between 2 dates in Javascript. Here, you will also learn how to use dates and [...]...