运行环境:Ubuntu+Code::Blocks(G++)
K-均值:在D(数据集)中随机地选择k个对象,每个对象代表一个簇的初始均值或中心。对剩下的每个对象,根据其与各个簇中心的欧式距离,将它分配到最相似的簇中。(不能保证k-均值方法收敛于全局最优解,并且它常常终止于一个局部最优解。可以不同的初始簇中心,多次运行k-均值算法。)
代码为3个簇,初始的簇中心为输入的前三个点。(代码是六七月份写的,直接放上来。)
#include <iostream>
#include <vector>
#include <cmath>
#include <fstream>
#include <cstdlib>
#define OP ','
#define SET_SIZE 3 //簇的个数 using namespace std;
const double EXP = 1e-;//用于判断新的中心点与原中心点的距离,如果比exp要小则说明聚类结束 //定义的点的坐标
typedef struct point
{
double xAxle;
double yAxle;
point()
{
xAxle = ;
yAxle = ;
}
point(double _x,double _y)
{
xAxle = _x;
yAxle = _y;
}
}Point; //读取文件里面的内容,到numSave数组里面去
void readFile(ifstream &inFile,const string &fileName,vector<Point> &numSave)
{
inFile.clear(); inFile.open(fileName.c_str());
if(!inFile)
{
cout << "无法打开输入文件!" << endl;
} //一行一行的读取
string temp;
while(getline(inFile,temp))
{
//文件里面一行是一个坐标点
double x = atof(temp.substr(,temp.find(OP)).c_str());
double y = atof(temp.substr(temp.find(OP) + ,temp.size()-).c_str()); numSave.push_back(Point(x,y));
} inFile.close();
} //计算距离值
double calDistance(Point &a,Point &b)
{
return sqrt((a.xAxle - b.xAxle) * (a.xAxle - b.xAxle) + (a.yAxle - b.yAxle)*(a.yAxle - b.yAxle));
} //计算一个簇里面的均值以获得中心点
void calAverage(vector<Point> num,double &xValueAver,double &yValueAver)
{
int xValue = ,yValue = ;
for(unsigned int i = ;i < num.size();i ++)
{
xValue += num[i].xAxle;
yValue += num[i].yAxle;
} //获得平均值
xValueAver = (double)xValue/num.size();
yValueAver = (double)yValue/num.size(); } //根据簇中心得到集合,getSetValue存储每一个簇里面的元素
void getSet(vector<Point> &numSave,vector<Point> &setCentre,vector<Point> (&getSetValue)[SET_SIZE])
{ for(unsigned int i = ;i < numSave.size();i ++)
{
//设置一个最大值,为了找到最小值
double temp = 100000000.0;
//记录最小的距离numSave[i]的值
unsigned int k = ;
for(unsigned int j = ;j < SET_SIZE;j ++)
{
//计算距离
double dis = calDistance(numSave[i],setCentre[j]);
if(temp > dis)
{
temp = dis;
k = j;//保留最小距离的那个编号
}
}
//将最小值放在相应编号的簇里面
getSetValue[k].push_back(numSave[i]);
}
} void k_average(vector<Point> &numSave,ofstream &os)
{
vector<Point> setCentre;
vector<Point> getSetValue[SET_SIZE];
vector<Point> tempCentre;//用来保存之前的数据,方便对比 //初始时将数据的前几个(定义的簇中心个数)作为中心点
for(unsigned int i = ;i < SET_SIZE && i < numSave.size();i ++)
{
setCentre.push_back(numSave[i]);
} while(true)
{
for(unsigned int i = ;i < SET_SIZE;i ++)
{
getSetValue[i].clear();
}
//根据簇中心找到与簇中心相关的点(距离近的点)
getSet(numSave,setCentre,getSetValue); tempCentre = setCentre;
bool flag = true;
for(unsigned int i = ;i < SET_SIZE;i ++)
{
//输出簇中心点
os << setCentre[i].xAxle << " and " << setCentre[i].yAxle << endl;
/*
for(unsigned int j = 0;j < getSetValue[i].size();j ++)
{
os << getSetValue[i][j].xAxle << " " << getSetValue[i][j].yAxle << "----";
}
os << endl;
*/
//根据新的集合获得新的簇中心
calAverage(getSetValue[i],setCentre[i].xAxle,setCentre[i].yAxle);
} //当其中有一项当前的簇中心相对于之前的移动了较大距离就继续寻找
for(unsigned int i = ;i < SET_SIZE;i ++)
{
if(fabs(setCentre[i].xAxle - tempCentre[i].xAxle) > EXP || fabs(setCentre[i].yAxle - tempCentre[i].yAxle) > EXP )
{
flag = false;
break;
}
} os << endl;
//当每个簇中心不再变化时就不用找了
if(flag)
{
break;
} } } int main()
{
ifstream inFile;
vector<Point> numSave;
readFile(inFile,"input.txt",numSave); ofstream outFile;
outFile.open("output.txt");
if(!outFile)
{
cout << "不能打开文件。请检查文件!" << endl;
}
k_average(numSave,outFile);
return ;
}
代码如下: