Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #3642 > unrolled thread

Re: graph representation

Started by"Dave Miller" <dave.miller@THRWHITE.remove-dii-this>
First post2011-04-27 15:46 +0000
Last post2011-04-27 15:46 +0000
Articles 1 — 1 participant

Back to article view | Back to comp.lang.java.gui

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: graph representation "Dave Miller" <dave.miller@THRWHITE.remove-dii-this> - 2011-04-27 15:46 +0000

#3642 — Re: graph representation

From"Dave Miller" <dave.miller@THRWHITE.remove-dii-this>
Date2011-04-27 15:46 +0000
SubjectRe: graph representation
Message-ID<6JN5k.4486$WH.964@trndny05>
  To: comp.lang.java.gui
polaris wrote:
> hi everyone
> 
> I wonder if I there is a strong and easy to use API to represent Graph
> that is suitable for my own data structure program.
> 
> Simply in my program i have built-in linked list of objects
> called Transaction class each Transaction represents vertex in a
> graph. Each vertex has two ArrayLists to keep the precedence and next
> vertices like following:
> 
> Class Transaction
> {
> 	int id;
> 	ArrayList <Transaction> preTransactionList;
> 	ArrayList <Transaction> nxtTransactionList;
> }
> 
> I don't know if there is a graph representation API in java
> to pass the vertex (Transaction) and their precedence and next
> vertices as long as the id (to be labeled in the node) to build a
> graphically depicted graph.
> Anyway i may customize my data structure to fit any API.

http://www.jgraph.com/

or if GIYF

http://www.google.com/search?q=java+graph+api

-- 
Dave Miller
Java Web Hosting at:
http://www.cheap-jsp-hosting.com/

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [standalone]


Back to top | Article view | comp.lang.java.gui


csiph-web