Has anyone had good experiences with any Java libraries for Graph algorithms. I've tried JGraph and found it ok, and there are a lot of different ones in google. Are there any that people are actually using successfully in production code or would recommend?
Ccna final exam - java, php, javascript, ios, cshap all in one. This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Tuesday, June 5, 2012
Good Java graph algorithm library?
Friday, May 25, 2012
Good PHP ORM Library?
Is there a good object-relational-mapping library for PHP?
I know of PDO /ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the domain model and the relational model. I'm looking for a PHP library that functions similarly to the way Hibernate does for Java and .NET.
A better Java JSON library?
Can anyone recommend a good Java JSON library (better than the one from http://json.org/ )? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything that is even better than that?
Wednesday, May 23, 2012
C++: what regex library should I use?
I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.)
Tuesday, May 15, 2012
Open source java library to read ECG data?
Can Someone suggest me a good open source java library to read ECG data in MFER / HL7 / Other formats?
Sunday, April 8, 2012
javascript data structures library
I'd like to ask for recommendation of JavaScript library/libraries that supply an implementation of some basic data structures such as a priority queue, map with arbitrary keys, tries, graphs, etc. along with some algorithms that operate on them.
I'm mostly interested in:
- The set of features covered,
- Flexibility of the solution - this mostly applies to graphs. For example do I have to use a supplied graph implementation,
- Use of functional features of the language - again it sometimes gives greater flexibility,
- Performance of the implementation
EDIT
Ok, I'd like to point out that I'm aware that it's possible to implement using js the following data structures:
- A map, if key values are either strings or numbers,
- A set, (using a map implementation),
- A queue, although as was pointed out below, it's inefficient on some browsers,
At the moment I'm mostly interested in priority queues (not to confuse with regular queues), graph implementations that aren't very intrusive as to the format of the input graph. For example they could use callbacks to traverse the structure of the graph rather than access some concrete properties with fixed names.
Source: Tips4all
Thursday, March 1, 2012
Writing an Android library - Using its own custom Application class (getApplication)
I'm writing an Android library and I wish to use a custom Application class, which will be accessible from all of the library's activities (using the getApplication method).
Monday, January 16, 2012
Javascript zoom library isn"t working
i am using this library zoomooz.js and i implemented it on my website but it isn't working, i followed the examples which came with the library but it only seems to work on the background. When i click on an article to zoom to i get an error in the google chrome console saying: "Uncaught TypeError: Object # has no method 'initialize'" in the "jquery.zoomooz.js:294" but i dont think it is a good idea to change the library so it must be an other problem sinds it works fine in the examples.
Thursday, January 12, 2012
gRaphael Library: Can't Create Line Chart
I'm using the gRaphael JavaScript library, and am attempting to draw a simple line graph.