* [Caml-list] Undirected Graph Problem...
@ 2003-10-15 13:46 Bhavik Gandhi
2003-10-15 14:21 ` David Fox
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Bhavik Gandhi @ 2003-10-15 13:46 UTC (permalink / raw)
To: caml-list
Hi,
Does anyone has an idea about,wirting a program for 'undirected graph of
integers through its adjacency list, using the depth-first traversal and
breasth first traversal' method. I am novice to OCAML language.
Bhavik
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] Undirected Graph Problem...
2003-10-15 13:46 [Caml-list] Undirected Graph Problem Bhavik Gandhi
@ 2003-10-15 14:21 ` David Fox
2003-10-15 14:21 ` Richard Jones
2003-10-15 19:48 ` Oleg Trott
2 siblings, 0 replies; 5+ messages in thread
From: David Fox @ 2003-10-15 14:21 UTC (permalink / raw)
To: Bhavik Gandhi; +Cc: caml-list
This would make a good homework assignment.
Bhavik Gandhi wrote:
> Hi,
>
> Does anyone has an idea about,wirting a program for 'undirected graph of
> integers through its adjacency list, using the depth-first traversal and
> breasth first traversal' method. I am novice to OCAML language.
>
> Bhavik
>
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] Undirected Graph Problem...
2003-10-15 13:46 [Caml-list] Undirected Graph Problem Bhavik Gandhi
2003-10-15 14:21 ` David Fox
@ 2003-10-15 14:21 ` Richard Jones
2003-10-15 19:48 ` Oleg Trott
2 siblings, 0 replies; 5+ messages in thread
From: Richard Jones @ 2003-10-15 14:21 UTC (permalink / raw)
Cc: caml-list
On Wed, Oct 15, 2003 at 09:46:37AM -0400, Bhavik Gandhi wrote:
> Hi,
>
> Does anyone has an idea about,wirting a program for 'undirected graph of
> integers through its adjacency list, using the depth-first traversal and
> breasth first traversal' method.
Isn't this covered in any of your college text books :-?
Rich.
--
Richard Jones. http://www.annexia.org/ http://freshmeat.net/users/rwmj
Merjis Ltd. http://www.merjis.com/ - all your business data are belong to you.
"One serious obstacle to the adoption of good programming languages is
the notion that everything has to be sacrificed for speed. In computer
languages as in life, speed kills." -- Mike Vanier
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] Undirected Graph Problem...
2003-10-15 13:46 [Caml-list] Undirected Graph Problem Bhavik Gandhi
2003-10-15 14:21 ` David Fox
2003-10-15 14:21 ` Richard Jones
@ 2003-10-15 19:48 ` Oleg Trott
2003-10-23 0:35 ` Eray Ozkural
2 siblings, 1 reply; 5+ messages in thread
From: Oleg Trott @ 2003-10-15 19:48 UTC (permalink / raw)
To: caml-list
On Wednesday 15 October 2003 09:46 am, Bhavik Gandhi wrote:
> Hi,
>
> Does anyone has an idea about,wirting a program for 'undirected graph of
> integers through its adjacency list, using the depth-first traversal and
> breasth first traversal' method. I am novice to OCAML language.
Breasts-first traversal? I don't think you can do this in Caml.
> Bhavik
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Caml-list] Undirected Graph Problem...
2003-10-15 19:48 ` Oleg Trott
@ 2003-10-23 0:35 ` Eray Ozkural
0 siblings, 0 replies; 5+ messages in thread
From: Eray Ozkural @ 2003-10-23 0:35 UTC (permalink / raw)
To: Oleg Trott, caml-list
On Wednesday 15 October 2003 22:48, Oleg Trott wrote:
>
> Breasts-first traversal? I don't think you can do this in Caml.
>
:>
He could hack together a generic BFS routine, though :)
I know I ought to be releasing a really nice imperative graph lib, but I had
another project so it went down the TODO list as always :/
Cheers,
--
Eray Ozkural (exa) <erayo@cs.bilkent.edu.tr>
Comp. Sci. Dept., Bilkent University, Ankara KDE Project: http://www.kde.org
www: http://www.cs.bilkent.edu.tr/~erayo Malfunction: http://mp3.com/ariza
GPG public key fingerprint: 360C 852F 88B0 A745 F31B EA0F 7C07 AE16 874D 539C
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-10-23 0:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-15 13:46 [Caml-list] Undirected Graph Problem Bhavik Gandhi
2003-10-15 14:21 ` David Fox
2003-10-15 14:21 ` Richard Jones
2003-10-15 19:48 ` Oleg Trott
2003-10-23 0:35 ` Eray Ozkural
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox