HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Functions
sort.h File Reference

Integer sort. More...

Go to the source code of this file.

Functions

MEMSPACE void heapify (int *v, int size, int root)
 
MEMSPACE void heapsort (int *v, int size)
 
MEMSPACE void insert_sort (uint16_t *v, int size)
 

Detailed Description

Integer sort.

Copyright © 2016 Mike Gore, GPL License
You are free to use this code under the terms of GPL
please retain a copy of this notice in any code you use it in.

This is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file sort.h.

Function Documentation

◆ heapify()

MEMSPACE void heapify ( int *  v,
int  size,
int  root 
)

Definition at line 29 of file sort.c.

Referenced by heapify(), and heapsort().

◆ heapsort()

MEMSPACE void heapsort ( int *  v,
int  size 
)

Definition at line 57 of file sort.c.

◆ insert_sort()

MEMSPACE void insert_sort ( uint16_t *  v,
int  size 
)

Definition at line 80 of file sort.c.