digitalmars.D.learn - SortedRange
- Andrea Fontana (8/8) Nov 29 2013 I see that SortedRange has a special "contains" method:
- =?UTF-8?B?QWxpIMOHZWhyZWxp?= (3/10) Nov 29 2013 Binary search is spelled as SortedRange.lowerBound (and its friends). :)
- Andrea Fontana (2/19) Nov 29 2013 Why isn't it implemented as static if on std.algorithm find() ?
- Jonathan M Davis (4/5) Nov 29 2013 Open an enhancement request:
I see that SortedRange has a special "contains" method: "Returns true if and only if value can be found in range, which is assumed to be sorted. Performs Ο(log(r.length)) evaluations of pred." Why there's no "find" method? find() inside std.algorithm seems to scan every element inside range. Why doesn't it use a binary search? Andrea
Nov 29 2013
On 11/29/2013 06:12 AM, Andrea Fontana wrote:I see that SortedRange has a special "contains" method: "Returns true if and only if value can be found in range, which is assumed to be sorted. Performs Ο(log(r.length)) evaluations of pred." Why there's no "find" method? find() inside std.algorithm seems to scan every element inside range. Why doesn't it use a binary search? AndreaBinary search is spelled as SortedRange.lowerBound (and its friends). :) Ali
Nov 29 2013
On Friday, 29 November 2013 at 16:50:23 UTC, Ali Çehreli wrote:On 11/29/2013 06:12 AM, Andrea Fontana wrote:Why isn't it implemented as static if on std.algorithm find() ?I see that SortedRange has a special "contains" method: "Returns true if and only if value can be found in range, which is assumed to be sorted. Performs Ο(log(r.length)) evaluations of pred." Why there's no "find" method? find() inside std.algorithm seems to scan every element inside range. Why doesn't it use a binary search? AndreaBinary search is spelled as SortedRange.lowerBound (and its friends). :) Ali
Nov 29 2013
On Friday, November 29, 2013 17:53:07 Andrea Fontana wrote:Why isn't it implemented as static if on std.algorithm find() ?Open an enhancement request: https://d.puremagic.com - Jonathan M Davis
Nov 29 2013