|
Create Charts Dynamically |
|
|
|
|
Sunday, 24 February 2008 |
Charts are graphical information that represent numerical data and its relationship. Charts can be created using different softwares or spreedsheets, and they are often incorporated in presentations or slides to help audiences understand the data easily.
Google provides a free and great chart API that can be used to dynamically generate charts for websites. A complete guide describing the API and how to use it can be found in the developer's guide page. |
|
Read More
|
|
|
Saturday, 09 February 2008 |
|
CPAN (Comprehensive PERL Archive Network) collects thousands of useful modules and subroutines written in PERL and their documentations, and authors. It is a comprehensive index of Perl modules. |
|
|
Tuesday, 14 November 2006 |
C++ STL (Standard Template Library) is an ANSI/ISO standard that has become an integral part of C++ distributions. STL can be grouped into 6 components: containers, generic algorithms, iterators, function objects, adaptors, and allocators.
Random_shuffle is one of the methods in generic algorithms component. To use this method, we must #include <algorithm> in the program. The method randomly put elements in a vector from [first, last). The method follows uniform distribution, i.e. the probability of each N element is 1/N [1]. The complexity of random_shuffle method is O(N) or linear. |
|
Read More
|
|
|