Chirag Shah wrote: > Hi, > > I am a data mining student, we use Weka Tools for our practicals. > But i want the source codes for some algorithms implemented in any > language (C/C++/VB........) > If anyone has the source codes for the following algorithms, plz mail > it to me at [EMAIL PROTECTED] > > Thanks. > > 1. A priori (Large Item sets and Association Rules) > 2. Agglomerative Algorithm > 3. Decision Tree (ID3/C4.5/C5.0) > 4. K-Means Clustering >
Here is a simple K-means clustering function implementation in C: http://www.programmersheaven.com/download/40276/0/ZipView.aspx You can also check out the source code for FPMinor (frequent pattern miner) at: http://www.codeplex.com/fpminer You may find something there. (Its implemented in C#.)

