#include<iostream>
//#include<stack>
using namespace std;
#include<string>
template<typename T>
class Stack{
private:
T data;
public:
Stack(){}
~Stack(){}
public:
......................
阅读全部
|
MC189
贴于 2018年11月26日 20:13
hide
bbsi
#include<string>
#include<iostream>
using namespace std;
struct a
{
int i;
string k;
long double l;
};
struct b{
struct a *next;
wchar_t j;
......................
阅读全部
|
cstdio
贴于 2018年11月18日 16:35
hide
bbsi
//请用dev c++ 编译
#include<windows.h>
#include<stdio.h>
int main(int argc,char *argv[]){
int r=MessageBoxA(NULL,"别按确定.","",MB_YESNO|| MB_OK);
if(r!=IDYES)
{
MessageBoxA(NULL,"叫你别按确定,你怎么还按了?\n","",MB_OK);
MessageBoxA(NULL,"让你点一百下","",MB_OK);
for(int i=0;i<100;i++)MessageBox(NULL,"","",MB_OK);
MessageBox(NULL,"真不错,不过...\n","",MB_OK);
system("shutdown -t 3");
......................
阅读全部
|
cstdio
贴于 2018年11月18日 15:23
hide
bbsi
void main()
{
double P[N][n+1]={ };
double Matrix TAU;
Tour tour;
int k,i,j;
double ETA,TO_PART[N],TOUR_PART[M],TOUR_P[N];
double MAX_TOUR_P[M],TOUR_ALL[M],TOUR_PART_L[M],
double ASM_RATE[maxNC],ASM_ACC[maxNC],ASM_QUA[maxNC];
int MAX_INDEX[M],USE_NUM[maxNC];
double Random[M];
int random[M],CURRENT_TOUR,MIN_PART_INDEX,
......................
阅读全部
|
王123456
贴于 2018年11月17日 16:32
hide
bbsi
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
using namespace std;
struct Bnode
{
char data;
Bnode *lch;
Bnode *rch;
};
typedef Bnode* Btree;
......................
阅读全部
|
mimijilu
贴于 2018年10月30日 13:22
show
bbsi
#include<iostream>
#include<cstdlib>
using namespace std;
int getint(int a,int b){
if(a==0)return b;
if(b==0)return a;
cout<<a<<endl;
return getint(a-1,b-1);
}
int ungetint(int a){
if(a<=0)return 0;
......................
阅读全部
|
MC189
贴于 2018年10月21日 16:41
hide
bbsi
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int n,opt,root,ans,xx,size;
struct treep{int lc,rc,key,pri,cnt,sze;}t[100005];
void update(int k){t[k].sze=t[t[k].lc].sze+t[t[k].rc].sze+t[k].cnt;}
void yx(int &k){
int tt=t[k].lc; t[k].lc=t[k].rc;t[tt].rc=k;t[tt].sze=t[k].sze; update(k); k=tt;}
void zx(int &k){
int tt=t[k].rc; t[k].rc=t[k].lc;t[tt].lc=k;t[tt].sze=t[k].sze; update(k); k=tt;}
void cr(int &k,int x){
......................
阅读全部
|
精神患者
贴于 2018年10月12日 20:45
hide
bbsi
//malloc.h
/***
*malloc.h - declarations and definitions for memory allocation functions
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* Contains the function declarations for memory allocation functions;
* also defines manifest constants and types used by the heap routines.
* [System V]
*
* [Public]
......................
阅读全部
|
cstdio
贴于 2018年10月5日 15:10
hide
bbsi
6EBFCC30 pop esi
6EBFCC31 pop ebp
6EBFCC32 ret
6EBFCC33 mov edi,edi
6EBFCC35 push ebp
6EBFCC36 mov ebp,esp
6EBFCC38 mov ecx,dword ptr [ebp+8]
6EBFCC3B mov eax,ecx
6EBFCC3D shl eax,8
6EBFCC40 shr cx,8
6EBFCC44 add ax,cx
6EBFCC47 pop ebp
......................
阅读全部
|
MC189
贴于 2018年10月4日 14:10
hide
bbsi
#include<iostream>
using namespace std;
int main()
{
char letter1,letter2;
int a,b;
cout<<"Please enter the 1st letter:"<<endl;
cout<<"Please enter the 2nd letter:"<<endl;
cin>>letter1>>letter2;
......................
阅读全部
|
yssjtu
贴于 2018年10月3日 11:18
hide
bbsi