wpe41.gif (23084 bytes)CIS3355: Business Data Structures
Fall, 2008
 

Pseudonym: gaseld
Website: http://en.wikipedia.org/wiki/Tree_data_structure
Title: Tree (data structure)
Submitter:
Date: 04/28/08
Time: 02:16:10 PM

Comments

tree is a widely used data structure that emulates a tree structure with a set of linked nodes

Pseudonym: stardog
Website: http://www.cprogramming.com/tutorial/lesson18.html
Title: Binary Trees: Part 1
Submitter:
Date: 04/29/08
Time: 01:50:11 PM

Comments

I liked this website because it had a description with graphics which makes it easier to understand.

Pseudonym: arnaryi
Website: http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Tree/
Title: Binary Trees
Submitter:
Date: 04/29/08
Time: 02:03:40 PM

Comments

this article discusses how binary trees are commonly associated with structuring data in natural hierarchial data structures. the trees are designed with nodes and a set of archs. each arck link is a parent node to another node known as the child node. in some cases, there are special root nodes that are not directly linked to a parent node. each arch must specify whether it is unidirectional or bidirectional. when bidirectional nodes exist many unique paths are available. the simplest kind of tree is a binary tree which consists of each parent node containing at the most two child nodes.

Pseudonym: efrimix
Website: http://www.webopedia.com/TERM/b/binary_tree.htm
Title: binary tree definition
Submitter:
Date: 04/29/08
Time: 02:17:53 PM

Comments

This page explains that a binary tree is a special type of tree structure in which each node has at most two leaves. Binary tree are often used for sorting data, as in a heap sort.

Pseudonym: Sport
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 04/29/08
Time: 02:21:01 PM

Comments

A binary tree is made up of nodes. These nodes contain pointers and data elements. Null pointers represent binary trees with no elements. A binary search tree is a binary tree where the nides are arranged in order. Binary trees are used due to the fact that they are fast at insert and lookup.

Pseudonym: rockfer
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: intro to binary trees
Submitter:
Date: 04/30/08
Time: 10:18:28 AM

Comments

quick introduction to binary trees and the code that operates on them

Pseudonym: bass5hartke
Website: http://cis.stvincent.edu/html/tutorials/swd/bintrees/bintrees.html
Title: Computing and Information Science Department
Submitter:
Date: 04/30/08
Time: 01:29:33 PM

Comments

This site is from a CIS, science department web site which is very interesting and diggs in a lot more than what I was looking for!!

Pseudonym: keko10
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 04/30/08
Time: 04:59:17 PM

Comments

It is a long file but it really provides a good explanation in detail about binary trees structures, problems and solutions using c

Pseudonym: Computer Teck Man
Website: http://www.cprogramming.com/tutorial/lesson18.html
Title: A Binary Tree Tutorial on how to construct trees.
Submitter:
Date: 04/30/08
Time: 07:33:11 PM

Comments

This website give the basic deffinition of binary trees. It give you some code on how to contruct it and what is may look like

Pseudonym: safadoo25
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: binary trees
Submitter:
Date: 04/30/08
Time: 07:55:55 PM

Comments

This is an excellent website on introducing binary trees as well as explaining the code that operates them. Good practice problems in order of increasing difficulty as well as the solutions.

Pseudonym: Pixelation
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 04/30/08
Time: 11:15:58 PM

Comments

A great explanation of binary trees along with practice problems

Pseudonym: Napalm_R
Website: http://library.thinkquest.org/C0111571/manual.php?tid=125
Title: Binary Tree
Submitter:
Date: 04/30/08
Time: 11:26:34 PM

Comments

This website defines binary trees and shows their structure.

Pseudonym: icequeen
Website: http://mathworld.wolfram.com/BinaryTree.html
Title: Binary tree
Submitter:
Date: 05/01/08
Time: 07:13:16 PM

Comments

This site explains all about binary trees, with mathematical formulas and everything. There are many references and links to related material included as well. Very good site for a basic understanding of binary trees.

Pseudonym: ochoa11
Website: http://math.hws.edu/eck/cs225/s03/binary_trees/
Title: Binary Trees in C++
Submitter:
Date: 05/01/08
Time: 09:11:26 PM

Comments

he we can undestand how to use binary trees, here is the definition and explanation of how binary trees work and how to use it. There is lot of imformation.

Pseudonym: lizard
Website: http://www.theory.csc.uvic.ca/~cos/inf/tree/BinaryTrees.html
Title: binary tree
Submitter:
Date: 05/02/08
Time: 11:36:25 AM

Comments

this site is easy to understand and clealy stated on how to make a binary tree. one page site but useful. also shows a graph about how to do it.

Pseudonym: chulo12
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 05/04/08
Time: 07:44:24 PM

Comments

On this site we can see what description of binary trees step by step. It contains the structure, problems and also who to use it with C, C++ and Java. It is a good defenition of what a binary trees is and how to use it with different programs.

Pseudonym: Bettyboop
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 05/06/08
Time: 03:39:13 PM

Comments

Explains Binary trees, binary tree problems, C solutions and Java Versions

Pseudonym: Lightbit
Website: http://searchsqlserver.techtarget.com/sDefinition/0,,sid87_gci509290,00.html
Title: What is a binary tree?
Submitter:
Date: 05/08/08
Time: 10:44:34 AM

Comments

This site answers the question what it a binary tree. A picture example is provided to help visualize the binary tree.

Pseudonym: GOTINAD
Website: http://en.wikipedia.org/wiki/Binary_tree
Title: WIKIPEDIA The free encyclopedia
Submitter: Daniela Ito
Date: 05/08/08
Time: 02:17:45 PM

Comments

Very good website because it not only provides definitions but also illustrations of binary trees and very good example of it.

Pseudonym: oleic*~
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 11/21/08
Time: 01:03:35 PM

Comments

Describes the structure of a binary tree.

Pseudonym: st@r
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Gives you an intro to binary trees with some problems you could encounter. It also includes links to more relative information.
Submitter:
Date: 11/25/08
Time: 10:47:49 AM

Comments

This article introduces the basic concepts of binary trees, and then works through a series of practice problems with solution code in C/C++ and Java. Binary trees have an elegant recursive pointer structure, so they are a good way to learn recursive pointer algorithms.

Pseudonym: penacho4
Website: http://en.wikipedia.org/wiki/Binary_tree
Title: Binary tree
Submitter:
Date: 12/03/08
Time: 03:37:59 PM

Comments

This website gives great detail of what a binary tree is. It also tells you the types and combinations there are.

Pseudonym: meezan85
Website: http://cslibrary.stanford.edu/110/BinaryTrees.html
Title: Binary Trees
Submitter:
Date: 12/03/08
Time: 10:24:55 PM

Comments

This site provides a wealth of information on binary trees. It explains what they are and also gives examples on how to create one.

Pseudonym: BbIbCQyRZafaYZ
Website: http://uyhyawchqhac.com/
Title: cDzkEcmIRzhtfyVPsg
Submitter: VObEzGFfOHtcf
Date: 04/29/10
Time: 04:33:44 AM

Comments

i7ZvME <a href="http://irtumokjamio.com/">irtumokjamio</a>, [url=http://uffycomixabn.com/]uffycomixabn[/url [link=http://ncvidnhyhigf.com/]ncvidnhyhigf[/link http://dqdmtdonuubn.com/

Pseudonym: vKTalGmvUtVLsxW
Website: http://www.yahoo.com/
Title: ilsdHXXoJhpe
Submitter: IBtfUdalQfvfxgx
Date: 07/19/11
Time: 07:29:17 AM

Comments

Calling all cars, cnallig all cars, we're ready to make a deal.

Pseudonym: OPcbNKIoktvK
Website: http://www.facebook.com/profile.php?id=100003407054835
Title: rJqzJGPFsvPbtcN
Submitter: wdjeVoBKduJltQIFL
Date: 11/29/12
Time: 03:51:03 AM

Comments

Hi Randa. I just filled out the suevry form. Had to do it twice (by clearing out the cookies in my browser), because the first time it submitted the form when I pressed Enter to type a new line. Why don't you use a textarea field instead of the tall input field that's getting confused as a textarea? This way people can press enter to type a long answer on multiple lines. Also, you should consider having a wrapping text in your textareas in the suevry.Also, was wondering how come you're not asking your readers to provide links to their websites/blogs?Great idea to get to know your readers better. I should come up with smth similar on my blog.P.S. Now I see why David's comment is showing up with my avatar looked so weird when I first saw it here.

Pseudonym: bLffaVJfEVYgssyEdDK
Website: http://www.facebook.com/profile.php?id=100003407085994
Title: iTpIOLInqBUZoff
Submitter: eRIjbmHAenm
Date: 12/01/12
Time: 12:08:06 AM

Comments

Hello Blogger! I found your website on Google and as a Search einnge optimizer I have a tip for you that I think you will find very useful. There's a WordPress addon that automatically Search optimizes your site for higher rankings, it's a 1-click setup that's not expensive at all. It will help you make more money from your website and drive more daily visitors to your pages. Click my username to take a look. Thanks for your time.

Pseudonym: dreambodystore
Website: http://www.dreambodystore.com/
Title: dreambodystore
Submitter: dreambodystore
Date: 05/18/14
Time: 07:37:56 PM

Comments

Binary Trees

Pseudonym: Home
Website: http://www.3xslimmingpills.com/
Title: Home
Submitter: Home
Date: 05/18/14
Time: 09:44:18 PM

Comments

Binary Trees

Pseudonym: Pai You Ji Tea
Website: http://www.paiyoujitea.org/
Title: Pai You Ji Tea
Submitter: Pai You Ji Tea
Date: 05/22/14
Time: 09:06:19 PM

Comments

Binary Trees

Pseudonym: john
Website: http://www.QS3PE5ZGdxC9IoVKTAPT2DBYpPkMKqfz.com
Title: mMqtDeTFsxpNaK
Submitter: john
Date: 10/14/14
Time: 10:10:26 AM

Comments

c6tctg http://www.QS3PE5ZGdxC9IoVKTAPT2DBYpPkMKqfz.com

Pseudonym: RKqZnrovgZ
Website: http://giswxkl.com
Title: You are so awesome f
Submitter:
Date: 08/26/16
Time: 08:48:09 PM

Comments

You are so awesome for helping me solve this myretsy.