现在,我研究MST,Hadoop。 我指的是page MST。 但是,我想在多轮MST。 我想输出每个边缘而不是发出总边缘。
所以 第112-115行
String strKey = new String();
strKey += inputKey;
Text outputKey = new Text(strKey);
~~~~~
String strKey = new String();
strKey = Integer.toString(inputKey);
Text outputKey = new Text(strKey);
~~~~~ 我想要这样。
但是,有未定义的构造函数或类型不匹配,它不起作用。
你能告诉我改进吗?
我想起了MST 1轮 G =(V,E) V =V1∪V2...∪Vk V1和V2运行该程序。(并行,V2和V3 ......)
2~多轮 再次运行程序每个结果,最终制作MST。