#include <iostream>
using namespace std;
int main()
{
for (int i = 1; i < 48; i++ )
{
for (int j = 1; j < 48; j++)
{
for (int k = 1; k < 48; k++)
{
......................
阅读全部
|
yny
贴于 2013年12月15日 17:20
hide
bbsi
#ifndef _POINT_H
#define _POINT_H
class Point{
public:
Point();
Point(int x,int y);
~Point();
void move(int newx,int newy);
int getx() const {return x;};
int gety() const {return y;};
static void showcount();
private:
......................
阅读全部
|
zxh371
贴于 2013年12月4日 11:24
hide
bbsi
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#define Max 5
#define NULL 0
#define bool int
#define false 0
#define true 1
using namespace std;
......................
阅读全部
|
爱的天使xuge
贴于 2013年12月1日 07:13
hide
bbsi
//用数组C[n][n]存放n个城市间的费用值。
//用数组P[n]记录已经找到的费用最小的周游路线,C为其相应的费用, C初值为∞。
//用数组N[n]记录目前正在寻找的周游路线,NC为其相应的费用;
//如果结点next不是N中已有的结点,且NC+C[N[s]][next]小于C,则结点next是可接受的。
//如果NC+C[N[n]][1]小于C,则路线N更佳,于是P[] = N[],C = NC+C[N[n]][1]。
#include<iostream>
using namespace std;
const int MAX = 100;
int P[MAX],N[MAX],T[MAX];
int Cost,NCost;
void back_try(int s,int n,int C[4][4])
......................
阅读全部
|
only_JBy
贴于 2013年11月27日 15:12
hide
bbsi
#include<iostream>
using namespace std;
struct BTNode
{
int data; //数据域
BTNode *lchild;//指向左子树的指针
BTNode *rchild;//指向右子树的指针
};
class BinaryTree
......................
阅读全部
|
mirrorslienc
贴于 2013年11月16日 22:22
hide
bbsi
#include<iostream>
#include<string>
using namespace std;
struct node{
char data;
node *lch,*rch;
};
void creat(node*p,string str,int r)
{
p->data=str[r];
if(str[2*r+1]=='#'||r*2+1>str.size()-1)
p->lch=NULL;
......................
阅读全部
|
qq183340093
贴于 2013年11月6日 20:30
hide
bbsi
#include<iostream>
using namespace std;
int main()
{
int i;
const double pi=3.1415926;
cout<<"请输入以下计算编号:1,长方形面积 。2,圆的面积。3,正方形的面积。\n";
cin>>i;
if (i>=3&&i<=0)
cout<<"你TM在玩我?!只能输入1到3的任一整数"<<endl;
switch(i)
......................
阅读全部
|
我辈年轻
贴于 2013年10月25日 21:58
hide
bbsi
#include "stdio.h"
#include "string.h"
int main()
{
int n,i,j;
char ch[10010];
scanf("%d",&n);
while(n--)
{
scanf("%s",ch);
int c[100010]={0};
......................
阅读全部
|
邓士林
贴于 2013年9月16日 23:08
hide
bbsi
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
int a,b,c=1,d=1,h,i,y,z,num1[6],num2[6];
string name1,name2;
ifstream OpenFile("ride.in");
OpenFile>>name1;
OpenFile>>name2;
OpenFile.close();
......................
阅读全部
|
zyouge
贴于 2013年9月15日 17:03
hide
bbsi
#include <iostream>
using namespace std;
int main()
{
int n,m,i,j,a[1010];
cin>>n>>m;
for(i=1;i<=n;i++)
a[i]=1;
for(i=1;i<=n;i++)
for(j=2;j<=m;j++)
{
if(i%j==0)a[i]=-1*a[i];
......................
阅读全部
|
邓士林
贴于 2013年9月13日 11:35
hide
bbsi