首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴MC189的代码贴全部
// Input streams -*- C++ -*-

// Copyright (C) 1997-2014 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
......................
阅读全部 | 2018年11月26日 20:16
// The -*- C++ -*- dynamic memory management header.

// Copyright (C) 1994-2014 Free Software Foundation, Inc.

// This file is part of GCC.
//
// GCC is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3, or (at your option)
// any later version.
// 
// GCC is distributed in the hope that it will be useful,
......................
阅读全部 | 2018年11月26日 20:14
#include<iostream>
//#include<stack>
using namespace std;
#include<string>
template<typename T>
class Stack{
private:
T data;
public:
Stack(){}
~Stack(){}
public:
......................
阅读全部 | 2018年11月26日 20:13
#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;
......................
阅读全部 | 2018年10月21日 16:41
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  
......................
阅读全部 | 2018年10月4日 14:10
1
MC189