Home Online Manual
Top
Back: round
Forward: decimal
FastBack:
FastForward:
Up: crypto_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.12.2.2 bubblesort

Procedure from library crypto.lib (see crypto_lib).

Usage:
bubblesort(L);

Return:
list L, sort in decreasing order

Example:
 
LIB "crypto.lib";
ring r = 0,x,dp;
list L=-567,-233,446,12,-34,8907;
bubblesort(L);
==> [1]:
==>    8907
==> [2]:
==>    446
==> [3]:
==>    12
==> [4]:
==>    -34
==> [5]:
==>    -233
==> [6]:
==>    -567