Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created May 23, 2009 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommorris/116744 to your computer and use it in GitHub Desktop.
Save tommorris/116744 to your computer and use it in GitHub Desktop.
For those who cannot distinguish between flat structures and tree structures.
Example 1:
Racism is bad. - Mr. A
* No it isn't. - Ms. B
* You are right. - Dr. C
is different from:
Example 2:
Racism is bad. - Mr. A
* No it isn't. - Ms. B
** You are right. - Dr. C
In Example 2, Dr. C expresses agreement with Ms. B.
In Example 1, Dr. C expresses agreement with Mr. A.
Both are tree structures, but in Example 2, the tree structure
is redundant. It's a flat structure since you CANNOT add a branch
on the tree. It's quite simple.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment