Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which language would be more suitable than the other for manipulating huge graphs, F# or C#? [closed]

Tags:

c#

f#

Are their advantages to either C# or F# that would make that language more suitable for manipulating huge graphs?

like image 751
Guilherme Avatar asked Mar 03 '11 18:03

Guilherme


1 Answers

Neither.

Both C# and F# are excellent languages that poses the capabilities to examine large data structures in an efficient manner. Virtually any solution coded up in one language could be coded up in the other. True there would be some syntactic differences and the occasional language construct which doesn't port cleanly between the two. But neither language has an inherent advantage in this area.

Instead of focusing on the language here I would focus on the algorithm. That much more than the language will determine the efficiency of your program.

like image 96
JaredPar Avatar answered Oct 05 '22 11:10

JaredPar