Implementing Graph Algorithms in Pascal

Write here if you have problems with your Pascal source code

Moderator: Board moderators

Post Reply
Observer
Guru
Posts: 570
Joined: Sat May 10, 2003 4:20 am
Location: Hong Kong

Implementing Graph Algorithms in Pascal

Post by Observer »

I'm trying to learn some graph algorithms at home.

However, I'm facing a number of difficulties:
1. Hard to find related Pascal resources from the Web/ library
2. Don't know where to start with
E.g. how can I implement Dijkstra's Algorithm in Pascal
and are there any good ACM-problems for me to have some practice?

Please help!!! All assistance are strongly welcomed.
7th Contest of Newbies
Date: December 31st, 2011 (Saturday)
Time: 12:00 - 16:00 (UTC)
URL: http://uva.onlinejudge.org
junjieliang
Experienced poster
Posts: 169
Joined: Wed Oct 31, 2001 2:00 am
Location: Singapore

Post by junjieliang »

Firstly, algorithms are largely not linked to language. The more important thing is to know about the graph theory behind the program, and after that you can implement it in just about any language.

One URL that helped me greatly when I first started: http://ciips.ee.uwa.edu.au/~morris/Year ... s_ToC.html

Altternatively, you can search on Google for more information.

Hope this helps.
Observer
Guru
Posts: 570
Joined: Sat May 10, 2003 4:20 am
Location: Hong Kong

Post by Observer »

Thanks!


Well actually, language DOES matter......

You see, most websites apply C++ codes to their explanation of algorithms. This gives me great trouble ('cos I know nothing about C++/C/JAVA...... :( )
7th Contest of Newbies
Date: December 31st, 2011 (Saturday)
Time: 12:00 - 16:00 (UTC)
URL: http://uva.onlinejudge.org
Post Reply

Return to “Pascal”