Newer
Older
langC_sp01 / zenbu_izon / sort.c
@Motoki Motoki 9 days ago 320 bytes first commit
//-------------------------------------------------------
//â—Žsort.c
#include "hd.h"
void sort(int data[]) {
  int x;
  int i, j;
  for( i = 0; i < SIZE; i += 1) {
    x = data[i];
    j = i;
    while((data[j-1] > x) && (j > 0)) {
      data[j] = data[j-1];
      j = j-1;
    }
    data[j]=x;	
  } 
} // end of sort