Timeline for Shortest Program To Find Lowest Common Ancestor of Two Nodes in a Binary Tree
Current License: CC BY-SA 4.0
21 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Aug 19, 2019 at 15:59 | comment | added | Grimmy | How is the list representation supposed to work? Having both the parent tree and child trees as sublists leads to an obvious infinite regress (and if they're not sublists, we're back to needing a reference-based representation). | |
| Aug 19, 2019 at 15:53 | answer | added | Grimmy | timeline score: 0 | |
| Aug 16, 2019 at 0:24 | answer | added | Neil | timeline score: 0 | |
| Aug 15, 2019 at 23:39 | answer | added | att | timeline score: 0 | |
| Aug 15, 2019 at 22:36 | answer | added | Chas Brown | timeline score: 2 | |
| Aug 15, 2019 at 22:35 | answer | added | nimi | timeline score: 0 | |
| Aug 15, 2019 at 18:54 | answer | added | Nick Kennedy | timeline score: 1 | |
| Aug 15, 2019 at 18:53 | history | edited | T. Salim | CC BY-SA 4.0 | added 107 characters in body |
| Aug 15, 2019 at 18:49 | answer | added | histocrat | timeline score: 1 | |
| Aug 15, 2019 at 17:51 | history | edited | T. Salim | CC BY-SA 4.0 | added 13 characters in body |
| Aug 15, 2019 at 17:41 | history | edited | T. Salim | CC BY-SA 4.0 | added 188 characters in body |
| Aug 15, 2019 at 17:38 | history | edited | T. Salim | CC BY-SA 4.0 | added 188 characters in body |
| Aug 15, 2019 at 17:32 | history | edited | T. Salim | CC BY-SA 4.0 | added 188 characters in body |
| Aug 15, 2019 at 17:22 | comment | added | T. Salim | If your language does not support references, you can use a list-like representation of a tree: [root_value, left_node, right_node, parent_node]. | |
| Aug 15, 2019 at 17:19 | history | edited | T. Salim | CC BY-SA 4.0 | [Edit removed during grace period] |
| Aug 15, 2019 at 17:18 | comment | added | Kamila Szewczyk | Could you provide exact input and output examples? Also, what if my programming language doesn't support references, pointers and structures? | |
| Aug 15, 2019 at 17:16 | history | edited | T. Salim | CC BY-SA 4.0 | added 31 characters in body |
| Aug 15, 2019 at 17:12 | answer | added | Robin Ryder | timeline score: 4 | |
| Aug 15, 2019 at 16:59 | history | edited | T. Salim | CC BY-SA 4.0 | deleted 6 characters in body |
| Aug 15, 2019 at 16:52 | history | edited | T. Salim | CC BY-SA 4.0 | added 29 characters in body |
| Aug 15, 2019 at 16:47 | history | asked | T. Salim | CC BY-SA 4.0 |