WareSeeker Search Software

tree


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

Node Tree


script PHP Free
View Detail
Download Node TreeDownload Node Tree
Node Tree is written for PHP and tested on Java-Script enabled browsers. Node Tree handle expandable tree lists based on a hierachical array like Microsofts Explorer. The information, which node is opened, closed or choosed is posted by HTML forms, so no extra file or DB needed for each session.
2

Nitobi Tree


script Ajax->Scripts and Applications Free Additional Info: 30 day free trial, http:
View Detail
Download Nitobi TreeDownload Nitobi Tree
Nitobi Tree adds a dynamic, hierarchical data view--similar to the folder view in Windows--to your web application with minimal coding and effort. The Ajax-driven tree component features drill-down, unbound mode, client-side statefulness, skinnability, and a data-driven sidebar. Nitobi Tree is available as part of the Complete UI suite of Ajax components, http://www.nitobi.com/pro ducts/completeui/
3

Active Tree


script ASP NET Free
View Detail
Download Active TreeDownload Active Tree
Active Tree is a powerful TreeView component that allow you to build your tree based navigation or selection system. Advanced Databinding will let you populate the tree in few line of codes. Our unique Visual Studio.NET control editor (property builder) will allow you to create the treeview entirely in a WYSIWYG interface. You can also load the treeview completely using an external XML file, using code or using tags in the ASPX page.
4

Tree menu


script PHP Free
View Detail
Download Tree menuDownload Tree menu
This is a simple PHP class that allows you to generate tree like menus. Note: this site requires registration to access the file.
5

Bio::Tree::Tree 1.4


linux Programming->Libraries Free
View Detail
Download Bio::Tree::Tree 1.4Download Bio::Tree::Tree 1.4
4.7 MB
Bio::Tree::Tree is an implementation of TreeI interface.

SYNOPSIS

# like from a TreeIO
my $treeio = new Bio::TreeIO(-format => newick, -file => treefile.dnd);
my $tree = $treeio->next_tree;
my @nodes = $tree->get_nodes;
my $root = $tree->get_root_node;

This object holds handles to Nodes which make up a tree.


6

AI Tree


script ASP NET Free
View Detail
Download AI TreeDownload AI Tree
With an approach of visual and intuitive programming it is the first product to offer a Flash-MX rendering as well as a wysiwyg representation at design time. This advanced tree is fully customizable and respects your initial web style. The integrated windows setting will help you throughout the process of realization. The power and the flexibility of this component shall surprise you.
7

SI Web Tree


script PHP Free
View Detail
Download SI Web TreeDownload SI Web Tree
SI Web Tree is a PHP based tree navigation script. It can be used within framed or non-framed sites. With the exception of a rollover script, the tree is completely server-side controlled. The script works with any browser.
8

Creata-Tree 3.0


windows Web Development->Menu Creators $9
View Detail
Download Creata-Tree 3.0Download Creata-Tree 3.0
1.97 MB
Creata-Tree will create one of the most powerful JavaScript menu trees available for your website.

Its free and comes complete with installation and un-installation. The program has a nice tree view for you to layout items and its very straightforward. Creata-Tree requires only basic HTML skills.

The dynamic tree works in browsers Internet Explorer 4+ and Netscape 4+. All other browsers view a nice static layout of the tree. Why JavaScript? By using JavaScript and keeping the code as open source, developers can manipulate the tree as they wish (see tree code for copyright info).

All objects and functions are accessible through other code on your web site, giving developers the ability to dynamically alter the trees properties from any page on their site. Why not Java? Java Applets can be clunky and slow loading on older systems.

Given all the customization and ability in Creata-Tree, as a Java Applet, it would be VERY slow. Why NeoText? We work hard to bring you the MOST customizable Tree on the net. Many companies and code can compare to one style of tree, with minimal ability. However our tree can do it all, from Explorer trees to Macintosh trees. If it has been done, Creata-Tree can do it. Creata-Tree can even do simple menus with out a tree design.

9

Cypres Tree 1.0


windows Home Leisure->Other Free
View Detail
Download Cypres Tree 1.0Download Cypres Tree 1.0
32 KB
Cypres Tree is an animated icon that will let you watch waves crashing and birds flying around the Cypres Tree Rock in Monteray, CA.

10

Tree.app 1.0


mac Shell Desktop->Desktop Free
View Detail
Download Tree.app 1.0Download Tree.app 1.0
158 KB
Tree.app is a blinking Christmas tree for your desktop.
Its the perfect way to remind yourself that the winter holidays are comming.



11

B-Tree 1.0


mac Education->Others Free
View Detail
Download B-Tree 1.0Download B-Tree 1.0
175 KB
B-Tree is an educational tool for showing the operations of a B-Tree. More specifically, it graphically demonstrates the B-Tree node layout, key value searching, node deletions, node additions, and splay balancing.

It also provides a description of the processes.



12

B::Tree 0.02


linux Programming->Libraries Free
View Detail
Download B::Tree 0.02Download B::Tree 0.02
0.002 MB
B::Tree is a simplified version of B::Graph for demonstration.

SYNOPSIS

perl -MO=Tree program | dot -Tps > tree.ps

This is a very cut-down version of B::Graph; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with the type of op.

It was written as an example of how to write compiler modules for "Professional Perl", but Ive found it extremely useful for creating simple op tree graphs for use in presentations on Perl internals.

It requires the CPAN GraphViz module and the GraphViz package from http://www.research.att.com/sw/tools/graphviz/. It takes no options.


13

Tree::BPTree 1.07


linux Programming->Libraries Free
View Detail
Download Tree::BPTree 1.07Download Tree::BPTree 1.07
0.017 MB
Tree::BPTree is a Perl implementation of B+ trees.

SYNOPSIS

use Tree::BPTree;

# These arguments are actually the defaults
my $tree = new Tree::BPTree(
-n => 3,
-unique => 0,
-keycmp => sub { $_[0] cmp $_[1] },
-valuecmp => sub { $_[0] <=> $_[1] },
);

# index the entries in this string:
my $string = "THERES MORE THAN ONE WAY TO DO IT"; # TMTOWTDI
my $i = 0;
$tree->insert($_, $i++) foreach (split //, $string);

# find the index of the first T
my $t = $tree->find(T);

# find the indexes of every T
my @t = $tree->find(T);

# We dont like the word WAY , so lets remove it
my $i = index $string, W;
$tree->delete($_, $i++) foreach (split //, substr($string, $i, 4));

# Reverse the sort order
$tree->reverse;

# Iterate through each key/value pair just like built-in each operator
while (my ($key, $value) = $tree->each) {
print "$key => $valuen";
}

# Reset the iterator when we quit from an "each-loop" early
$tree->reset;

# You might also be interested in using multiple each loops at once, which is
# possible through the cursor syntax. You can even delete individual pairs
# from the list during iteration.
my $cursor = $tree->new_cursor;
while (my ($key, $value) = $cursor->each) {
my $nested = $tree->new_cursor;
while (my ($nkey, $nvalue) = $nested->each) {
if ($key->shouldnt_be_in_this_tree_with($nkey)) {
$nested->delete;
}
}
}

# Iterate using an iterator subroutine
$tree->iterate(sub { print "$_[0] => $_[1]n" });

# Iterate using an iterator subroutine that returns the list of return values
# returned by the iterator
print join(, , $tree->map(sub { "$_[0] => $_[1]" })),"n";

# Grep-like operations
my @pairs = $tree->grep (sub { $_[0] =~ /S/ });
my @keys = $tree->grep_keys (sub { $_[0] =~ /S/ });
my @values = $tree->grep_values (sub { $_[0] =~ /S/ });

# Get all keys, values
my @all_keys = $tree->keys;
my @all_values = $tree->values;

# Clear it out and start over
$tree->clear;

B+ trees are balanced trees which provide an ordered map from keys to values. They are useful for indexing large bodies of data. They are similar to 2-3-4 Trees and Red-Black Trees. This implementation supports B+ trees using an arbitrary n value.


14

POV-Tree 1.5b


windows Graphic Apps->Other Free
View Detail
Download POV-Tree 1.5bDownload POV-Tree 1.5b
872 KB
POV Tree description
POV-Tree is a Java tree generator for POV-Ray POV-Tree is a Java tree generator for POV-Ray that uses a tree generation algorithm which is used in this program was based on the TOMTREE macro.

You can think of this program as of GUI for that macro. In addition to the possibility to define
numerous parameters you can also preview tree and save it either as an include file or as a mesh file.

Think about units used in POV-Tree as centimetres (no support for inches yet :) So trunk radius 20 would mean radius 20 centimetres. Branch start at 300 would mean that branches start at height 3 meters.

The TREE object which you will get either from TOMTREE or as a mesh from POV-Tree is normalized so it occupies 1 unit box in POV-Ray. You have to scale it for your needs.

15

Creata-Tree 2.0


windows Web Development->Java Programming Tools Free
View Detail
Download Creata-Tree 2.0Download Creata-Tree 2.0
2,700K
Produces one of the most powerful JavaScript menu trees available for your web site. Its FREE and comes complete with installation and un-installation. The program has a nice tree view for you to layout items and its very straightforward. Creata-Tree requires only basic HTML skills. The dynamictree works in browsers Internet Explorer 4+ and Netscape 4+. All other browsers view a nice static layout of the tree.

16

B+ Tree 1.0


windows Software Development->Components Libraries Free
View Detail
Download B+ Tree 1.0Download B+ Tree 1.0
50 KB
B plus Tree description
A type of tree, which represents sorted data in a way that allows for efficient insertion, retrieval and removal of records B+ Tree was designed to be a type of tree, that represents sorted data in a way that allows for efficient insertion, retrieval and removal of records, each of which is identified by a key.

It is a dynamic, multilevel index, with maximum and minimum bounds on the number of keys in each index segment (usually called a block or node). In a B+ tree, in contrast to a B-tree, all records are stored at the lowest level of the tree; only keys are stored in interior blocks.

17

Xmass Tree 3.11


windows Home Shell Desktop->Misc Screen Savers A G $9.95
View Detail
Download Xmass Tree 3.11Download Xmass Tree 3.11
3234K
Xmass Tree - Animated Screensaver by EleFun Multimedia. Do you enjoy your desktop having beautiful screensaver? Just have a look at Animated Screensaver Xmass Tree . A magnificent Christmas tree stands in the yard of the house decorated with holiday lights. Don t you think that Christmas is an amazing and unique holiday, which cannot be compared to any other holiday of the year? Everything related to Christmas decoration of houses, beautiful fir tree sparkling with its holiday decorations and a garland, all these and many other things evoke the brightest and the most pleasant feelings in us. Install Animated Screensaver Xmass Tree on your computer and let everything rejoice you on this bright Christmas holiday.

18

AJAX TREE API


script Ajax->Scripts and Applications Free
View Detail
Download AJAX TREE APIDownload AJAX TREE API
AJAX TREE API is an application which generates an html tree by xml data, with ul and li html tags. After loading the xml data, the API will create an html tree, with the configuration of another xml file. This second xml file records the configuration to construct the html tree, with the information needed to transform the xml data into ul and li html tags. Beyond these two files, there are predefined functions which can be used on the configuration file. The html tree is built with javascript code, with html code generated dynamically. This can be a problem to the indexation of Google and others web searchable. To solve this, the html tree can be generated by php code You can see more information in: www.jplpinto.com/apis/tre e/ With this API you can have the data separated from the interface code, without need to know programming languages. However, if you want, you can program your own functions.
19

Easy PHP Tree


script PHP Free
View Detail
Download Easy PHP TreeDownload Easy PHP Tree
Easy PHP Tree is a small PHP script (73 code lines only) that builds a navigation tree with unlimited nodes. Vary fast by using one Mysql query only. Pure PHP (javascript free) script which works under all available browsers. PHP5 compatible, works with register_globals Off or On. Expan/collaps mode, build in install query.
20

Tree Route .1


windows Network Internet->Network Information Tools $15.00
View Detail
Download Tree Route .1Download Tree Route .1
22K
This program shows ping times and trace route of internet sites in tree format making it easy to see what the major gateways/routers your internet traffic goes though.

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search