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

12 May 2015

9 May 2015

5 October 2014

1 October 2014

29 September 2014

25 September 2014

19 September 2014

13 September 2014

  • curprev 11:2411:24, 13 September 2014Luedecke talk contribs 254 bytes +254 Created page with "TREE-INSERT(T, z) :y = Null :x = root(T) :while x ≠ NULL ::y = x ::if key[z] < key[x] :::then x = left[x] :::then x = right[x] :p[z] = y :if y = NULL ::then root[T] = z //Tr..."