Binary search tree: remove: 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

1 October 2014

29 September 2014

25 September 2014

23 September 2014

19 September 2014

13 September 2014

  • curprev 11:3011:30, 13 September 2014Luedecke talk contribs 377 bytes +377 Created page with "TREE-DELETE(T,z) :if left[z] = NULL or right[z] = NULL ::then y = z ::else y = TREE-SUCCESSOR(z) :if left[y] ≠ NULL ::then x = left[y] ::else x = right[y] :if x ≠ NULL ::t..."