lsort.n

来自「tcl是工具命令语言」· N 代码 · 共 195 行

N
195
字号
'\"'\" Copyright (c) 1993 The Regents of the University of California.'\" Copyright (c) 1994-1996 Sun Microsystems, Inc.'\" Copyright (c) 1999 Scriptics Corporation'\" Copyright (c) 2001 Kevin B. Kenny.  All rights reserved.'\"'\" See the file "license.terms" for information on usage and redistribution'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.'\" '\" RCS: @(#) $Id: lsort.n,v 1.12 2001/11/14 23:38:39 hobbs Exp $'\" .so man.macros.TH lsort n 8.3 Tcl "Tcl Built-In Commands".BS'\" Note:  do not modify the .SH NAME line immediately below!.SH NAMElsort \- Sort the elements of a list.SH SYNOPSIS\fBlsort \fR?\fIoptions\fR? \fIlist\fR.BE.SH DESCRIPTION.PPThis command sorts the elements of \fIlist\fR, returning a newlist in sorted order.  The implementation of the \fBlsort\fR commanduses the merge\-sort algorithm which is a stable sort that has O(n logn) performance characteristics..PPBy default ASCII sorting is used with the result returned inincreasing order.  However, any of the following options may bespecified before \fIlist\fR to control the sorting process (uniqueabbreviations are accepted):.TP 20\fB\-ascii\fRUse string comparison with ASCII collation order.  This is the default..TP 20\fB\-dictionary\fRUse dictionary-style comparison.  This is the same as \fB\-ascii\fRexcept (a) case is ignored except as a tie-breaker and (b) if twostrings contain embedded numbers, the numbers compare as integers,not characters.  For example, in \fB\-dictionary\fR mode, \fBbigBoy\fRsorts between \fBbigbang\fR and \fBbigboy\fR, and \fBx10y\fRsorts between \fBx9y\fR and \fBx11y\fR..TP 20\fB\-integer\fRConvert list elements to integers and use integer comparison..TP 20\fB\-real\fRConvert list elements to floating-point values and use floating comparison..TP 20\fB\-command\0\fIcommand\fRUse \fIcommand\fR as a comparison command.To compare two elements, evaluate a Tcl script consisting of\fIcommand\fR with the two elements appended as additionalarguments.  The script should return an integer less than,equal to, or greater than zero if the first element is tobe considered less than, equal to, or greater than the second,respectively..TP 20\fB\-increasing\fRSort the list in increasing order (``smallest'' items first).This is the default..TP 20\fB\-decreasing\fRSort the list in decreasing order (``largest'' items first)..TP 20\fB\-index\0\fIindex\fRIf this option is specified, each of the elements of \fIlist\fR mustitself be a proper Tcl sublist.  Instead of sorting based on wholesublists, \fBlsort\fR will extract the \fIindex\fR'th element fromeach sublist and sort based on the given element.  The keyword\fBend\fP is allowed for the \fIindex\fP to sort on the last sublistelement,.VS 8.4and \fBend-\fIindex\fR sorts on a sublist element offset fromthe end..VEFor example,.RS.CSlsort -integer -index 1 {{First 24} {Second 18} {Third 30}}.CEreturns \fB{Second 18} {First 24} {Third 30}\fR, and.VS 8.4'\"'\" This example is from the test suite!'\".CSlsort -index end-1 {{a 1 e i} {b 2 3 f g} {c 4 5 6 d h}}.CEreturns \fB{c 4 5 6 d h} {a 1 e i} {b 2 3 f g}\fR..VEThis option is much more efficient than using \fB\-command\fRto achieve the same effect..RE.TP 20\fB\-unique\fRIf this option is specified, then only the last set of duplicateelements found in the list will be retained.  Note that duplicates aredetermined relative to the comparison used in the sort.  Thus if \fI-index 0\fR is used, \fB{1 a}\fR and \fB{1 b}\fR would beconsidered duplicates and only the second element, \fB{1 b}\fR, wouldbe retained..SH "NOTES".PPThe options to \fBlsort\fR only control what sort of comparison isused, and do not necessarily constrain what the values themselvesactually are.  This distinction is only noticeable when the list to besorted has fewer than two elements..PPThe \fBlsort\fR command is reentrant, meaning it is safe to use aspart of the implementation of a command used in the \fB\-command\fRoption..SH "EXAMPLES".PPSorting a list using ASCII sorting:.CS% lsort {a10 B2 b1 a1 a2}B2 a1 a10 a2 b1.CE.PPSorting a list using Dictionary sorting:.CS% lsort -dictionary {a10 B2 b1 a1 a2}a1 a2 a10 b1 B2.CE.PPSorting lists of integers:.CS% lsort -integer {5 3 1 2 11 4}1 2 3 4 5 11% lsort -integer {1 2 0x5 7 0 4 -1}-1 0 1 2 4 0x5 7.CE.PPSorting lists of floating-point numbers:.CS% lsort -real {5 3 1 2 11 4}1 2 3 4 5 11% lsort -real {.5 0.07e1 0.4 6e-1}0.4 .5 6e-1 0.07e1.CE.PPSorting using indices:.CS% # Note the space character before the c% lsort {{a 5} { c 3} {b 4} {e 1} {d 2}}{ c 3} {a 5} {b 4} {d 2} {e 1}% lsort -index 0 {{a 5} { c 3} {b 4} {e 1} {d 2}}{a 5} {b 4} { c 3} {d 2} {e 1}% lsort -index 1 {{a 5} { c 3} {b 4} {e 1} {d 2}}{e 1} {d 2} { c 3} {b 4} {a 5}.CE.PPStripping duplicate values using sorting:.CS% lsort -unique {a b c a b c a b c}a b c.CE.PPMore complex sorting using a comparison function:.CS% proc compare {a b} {    set a0 [lindex $a 0]    set b0 [lindex $b 0]    if {$a0 < $b0} {        return -1    } elseif {$a0 > $b0} {        return 1    }    return [string compare [lindex $a 1] [lindex $b 1]]}% lsort -command compare \\        {{3 apple} {0x2 carrot} {1 dingo} {2 banana}}{1 dingo} {2 banana} {0x2 carrot} {3 apple}.CE.SH "SEE ALSO".VS 8.4list(n), lappend(n), lindex(n), linsert(n), llength(n), lsearch(n), lset(n), lrange(n), lreplace(n).VE.SH KEYWORDSelement, list, order, sort

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?