编程之美2.3寻找发帖水王扩展问题


与之前同意的思路,只不过现在需设置3个candidate变量。若与此3个candidate的id均不相同,则count-1。


#include
using namespace std;
const int N=16;
class Type{
public:
	Type(){count=0;id=-1;}
	int count;
	int id;
};
int main(){
	int ID[N]={1,2,3,4,5,3,2,1,1,1,2,2,3,3,4,4};

	
	Type candidate1;
	Type candidate2;
	Type candidate3;
	int i;
	for(i=0;i


你可能感兴趣的:(编程之美)