| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 381 人关注过本帖
标题:[求助]奇怪的问题,究竟是哪儿不对.
只看楼主 加入收藏
tancui
Rank: 1
等 级:新手上路
威 望:1
帖 子:63
专家分:0
注 册:2006-11-19
收藏
 问题点数:0 回复次数:1 
[求助]奇怪的问题,究竟是哪儿不对.

//找在10000内的质素里等差最大的等差数列 如3 5 7差为2

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>

using namespace std;

int main(int argc, char* argv[])
{
const int SIZE = 10000;
int num[SIZE+1]; //一个栅栏,即num[0];
num[0]=0;
num[1]=0;

for(int m=2;m<=SIZE;m++) //set all the num 1
num[m]=1;

int pp=sqrt(SIZE)+1;
for (int a=2;a!=pp;a++)
for(int b=2;b<=sqrt(a);b++) //find the prime number in sqrt(SIZE) and set others 0
if(a%b==0)
{
num[a]=0;
break;
}

for(int i=1;i!=pp;i++) // find tne prime number in SIZE and set them 1
{
if(num[i]==0)
continue;

for (int j=2;j<=SIZE / i;j++)
num[i*j]=0;
}
vector<int> PN;

for(int n=1;n<SIZE;n++) //save the prime number in vector PN
if(num[n]==1)
PN.push_back(n);

vector<int>::iterator Pb=PN.begin();
vector<int>::reverse_iterator Pe=PN.rbegin();

int aa[4]={1,1,1,1};
vector<int> L(aa,aa+4);

int abc=PN.size()/2;

for (int N=0;N < abc;N++,Pb++)
{

for (int M=0;M < abc;M++,Pe++)

{

L[3]=(*Pb+*Pe)/2;
if(find(PN.begin(),PN.end(),L[3]) != PN.end()) //在PN中查找L[3],
if(L[0]<*Pe-*Pb)
{
L[0]=*Pe-*Pb;
L[1]=*Pe;
L[2]=*Pb;
}
}
}
cout << L[0] <<endl
<<L[1] <<endl
<<L[2] <<endl;
return 0;
}

搜索更多相关主题的帖子: include 最大的 
2007-09-15 14:16
tancui
Rank: 1
等 级:新手上路
威 望:1
帖 子:63
专家分:0
注 册:2006-11-19
收藏
得分:0 
L[3]=(*Pb+*Pe)/2;
*Pb-*Pe;

主要是这种的问题,放到循环外面就可以,但在内部时只运行几次就挂了.
2007-09-15 14:18
快速回复:[求助]奇怪的问题,究竟是哪儿不对.
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034824 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved