Binary search tree: find: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

3 March 2017

18 May 2015

17 May 2015

9 May 2015

5 October 2014

2 October 2014

1 October 2014

26 September 2014

23 September 2014

19 September 2014

13 September 2014

  • curprev 10:2210:22, 13 September 2014Luedecke talk contribs 156 bytes +156 Created page with ":TREE-SEARCH (x, k) ::if x= NIL or k = key[x] :::then return x ::if k < key[x] :::then return TREE-SEARCH(left[x], k) ::else return TREE-SEARCH(right[x], k)"