summaryrefslogtreecommitdiff
path: root/src/pkg/sort
Commit message (Expand)AuthorAgeFilesLines
* std lib: fix various typos in commentsRobert Griesemer2014-05-021-1/+1
* all: fix a few spelling errors in source commentsMartin Olsson2013-12-271-2/+2
* sort: move example to package level and simplify furtherAndrew Gerrand2013-09-161-7/+7
* sort: fix up example expected output formattingRobert Daniel Kortschak2013-09-082-6/+7
* sort: add a simpler sort.Interface exampleAndriy Lytvynov2013-09-082-56/+99
* sort: fix Example_sortMultiKeysAndriy Lytvynov2013-09-061-5/+4
* sort: use a very fast random generator for benchmarksDave Cheney2013-08-291-1/+7
* sort: harden limit in stable testVolker Dobler2013-08-271-1/+1
* all: protect alloc count tests by -testing.shortRob Pike2013-08-211-0/+3
* all: be more idiomatic when documenting boolean return values.Rob Pike2013-07-231-2/+2
* sort: fix 32-bit buildRuss Cox2013-07-011-1/+1
* sort: implement stable sortingVolker Dobler2013-07-012-4/+381
* sort: don't depend on mathBrad Fitzpatrick2013-04-201-3/+6
* sort: be consistent when describing "less: function in the multiKeys exampleRob Pike2013-04-021-3/+3
* sort: new example: programmatic sort by multiple keysRob Pike2013-04-021-0/+132
* all: Skip AllocsPerRun tests if GOMAXPROCS>1.Albert Strasheim2013-03-061-0/+4
* sort: use proper mass unit in exampleVolker Dobler2013-02-271-2/+2
* sort: add an example showing sorting struct by different keysRob Pike2013-02-261-0/+96
* cmd/gc: apply escape analysis results to closures.R?my Oudompheng2013-02-261-0/+22
* sort: use fewer comparisons when choosing pivot.David Symonds2013-02-142-28/+37
* sort: delete now-duplicate example, fix buildBrad Fitzpatrick2013-02-011-30/+0
* sort: add Reverse as a functionMiek Gieben2013-02-013-0/+40
* sort: fix comment for various Search routinesShenghou Ma2012-11-071-5/+8
* sort: make return value for 'not found' clearer in docsRob Pike2012-11-021-3/+8
* gofmt: apply gofmt -w src miscRobert Griesemer2012-10-301-3/+3
* sort: Fixed a typo in the documentation for SearchStrings.Patrick Smith2012-10-281-1/+1
* sort: add time complexity to docStefan Nilsson2012-03-221-1/+2
* sort: fix computation of maxDepth to avoid infinite loopStefan Nilsson2012-03-201-2/+2
* sort: document two undocumented functionsBrad Fitzpatrick2012-03-201-0/+3
* sort: add interface examplesAndrew Gerrand2012-02-162-0/+107
* godoc: make example code more readable with new comment conventionAndrew Gerrand2012-02-161-1/+1
* build: remove Make.pkg, Make.toolRuss Cox2012-01-301-12/+0
* sort: eliminate extra Len() callRobert Griesemer2012-01-051-1/+1
* go/printer, gofmt: fine tuning of line spacingRobert Griesemer2011-12-161-0/+4
* go/printer, godoc: print comments in example codeRobert Griesemer2011-12-131-1/+1
* renaming_3: gofix -r go1pkgrename src/pkg/[m-z]*Rob Pike2011-11-081-1/+1
* go/doc, godoc, gotest: support for reading example documentationAndrew Gerrand2011-10-061-0/+17
* sort: use heapsort to bail out quicksortZiad Hatahet2011-09-073-11/+127
* sort: fixed bug in (Float64Slice) Less; NaN less than anything elseFlorian Uekermann2011-07-232-2/+5
* sort: remove testing cycleRuss Cox2011-07-222-3/+14
* go/printer: changed max. number of newlines from 3 to 2Robert Griesemer2011-07-144-21/+0
* sort: rename helpers: s/Sort// in sort.Sort[Float64s|Ints|Strings]Andrew Gerrand2011-07-082-18/+18
* sort: change the name of Float64Array to Float64Slice.Rob Pike2011-06-164-28/+28
* sort: change IntArray etc. to IntSlice for better name hygiene.Rob Pike2011-06-114-24/+24
* src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao2011-04-201-2/+2
* testing: shorten some tests.Rob Pike2011-03-251-1/+8
* delete float, complex - code changesRuss Cox2011-01-194-29/+29
* Sort: reduced stack depth to lg(n) in quickSortStefan Nilsson2010-12-021-4/+12
* sort: avoid overflow in pivot calculation.Rob Pike2010-11-301-1/+1
* sort: invert meaning of f in SearchRuss Cox2010-11-182-29/+45