please dont rip this site

Language Ccpp Cref Examples QSORT2.C

/ ************************************************************************
 *
 * Purpose: To read numbers entered by the user and sort them.
 * Author:  M.J.Leslie
 * Date:    30-Nov-94
 *
 ************************************************************************/

/********** Preprocessor  ***********************************************/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

/********** Functions ***************************************************/

int read_nums(int *);
void display_nums(int *);
int comp_nums(const int *, const int *);

/********** main ********************************************************/

main()
{
  int numbers[30];			/* Numbers to be sorted.	*/
  int how_many=0;			/* Number of numbers entered	*/

					/* Get the numbers		*/
  how_many = read_nums(numbers);

  puts("\nThese are the unsorted numbers\n");
  display_nums(numbers);

					/* SORT the numbers held in 
					 * 'numbers'.			*/
  qsort(
	numbers, 			/* Pointer to elements		*/
	how_many, 			/* Number of elements		*/
	sizeof(int),  			/* size of one element.		*/
	(void *)comp_nums		/* Pointer to comparison function */
	);

  puts("\nThese are the sorted numbers\n");
  display_nums(numbers);
}

/************************************************************************
 *
 * comp_nums: Compare two numbers.
 *
 ************************************************************************/

int comp_nums(const int *num1, const int *num2)
{
  if (*num1 <  *num2) return -1;
  if (*num1 == *num2) return  0;
  if (*num1 >  *num2) return  1;
}

/************************************************************************
 *
 * readnums: read numbers from the keyboard and put them into an array.
 *
 ************************************************************************/

int read_nums(int *array)
{

  char data[80];			/* Data entered by the user	*/
  int inc=0;

  puts("\n\tPlease enter some integer numbers");
  puts("\tno checking is made on the data you enter....");
  printf("\t==> ");

  gets(data);
					/* Assume we have valid data.	
					 * Put it into an array.	*/
  *(array+inc) = atoi(strtok(data," "));
  inc++;
   
  while ( *(array+inc) = atoi(strtok(NULL," "))) inc++;

					/* Return the number of items
					 * stored in 'array'.		*/
  return inc++;
}

/************************************************************************
 *
 * display_nums: Display the numbers
 *
 ************************************************************************/

void display_nums(int *array)
{
					/* NULL is a pointer to 0, 
					 * so it must be cast to an
					 * integer			*/
  while ( *array != (int)NULL)
  {
    printf("%d ",*array);
    array++;
  }

  puts("");
}


file: /Techref/language/ccpp/cref/EXAMPLES/qsort2.c, 2KB, , updated: 1997/4/21 09:52, local time: 2024/4/25 09:53,
TOP NEW HELP FIND: 
3.137.218.215:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.massmind.org/techref/language/ccpp/cref/EXAMPLES/qsort2.c"> language ccpp cref EXAMPLES qsort2</A>

Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .