#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<string>
using namespace std;
//创建一个抽象类
class Worker
{
public:
Worker()
{
inum++; //静态变量的变化值
......................
阅读全部
|
gougoudan
贴于 2020年6月13日 17:59
hide
bbsi
#include<bits/stdc++.h>
using namespace std;
char a[10][10];
int x,y,f;
bool judge(int yy,int xx)
{
int c=yy,d=xx;
for(int i=1;i<=4;i++)
{
if(a[c][d]!=a[++c][d]) break;
if(i==4) return false;
}
......................
阅读全部
|
l879800503
贴于 2020年6月10日 17:55
hide
bbsi
#include <iostream>
#include <cstring>
using namespace std;
class Employee
{
public:
virtual void pay(){ } // 第一题 这一行不要
string name;
float salary;
};
......................
阅读全部
|
gougoudan
贴于 2020年6月8日 15:24
hide
bbsi
#include <iostream>
#include <sstream>
#include <cstring>
#include <cassert>
using namespace std;
template <typename Type, int Count>
class Array
{
enum { sz = Count };
Type i[Count];
......................
阅读全部
|
gougoudan
贴于 2020年6月8日 11:41
hide
bbsi
#include <iostream>
using namespace std;
struct HuffNode
{
float weight;
int parent;
int lchild;
int rchild;
};
//实现哈夫曼编码, 返回根节点
......................
阅读全部
|
gougoudan
贴于 2020年6月6日 22:34
hide
bbsi
#include <iostream>
using namespace std;
struct HuffNode
{
float weight;
int parent;
int lchild;
int rchild;
};
//实现哈夫曼编码, 返回根节点
......................
阅读全部
|
gougoudan
贴于 2020年6月6日 22:34
hide
bbsi
#include <iostream>
#include <algorithm>
using namespace std;
void showarray(int a[], int c, int d)
{
for (int i = 0; i < c; ++i)
cout << a[i] << ' ';
cout << endl;
}
//对a[low]到a[high]由小到大排序
bool QuickSort(int a[], int count, int teamIdx)
{
......................
阅读全部
|
gougoudan
贴于 2020年6月6日 19:43
hide
bbsi
#include <iostream>
#include <algorithm>
using namespace std;
void showarray(int a[], int c, int d)
{
for (int i = 0; i < c; ++i)
cout << a[i] << ' ';
cout << endl;
}
//对a[low]到a[high]由小到大排序
bool QuickSort(int a[], int count, int teamIdx)
{
......................
阅读全部
|
gougoudan
贴于 2020年6月6日 19:41
hide
bbsi
#include <iostream>
#include <iomanip>
#include <cstring> // strcpy and strcat prototypes
#include <cstdlib> // exit prototype
using namespace std;
class String
{
friend ostream &operator<<(ostream &, const String &);
friend istream &operator>>(istream &, String &);
public:
String(const char * = ""); // conversion/default constructor
......................
阅读全部
|
gougoudan
贴于 2020年6月3日 14:48
hide
bbsi
#include <iostream>
using namespace std;
class Skill
{
int *nSkill;
public:
Skill(int n) {
nSkill = new int;
*nSkill = n;
cout << "member object " << (*nSkill) <<" constructed" << endl;
}
~Skill(){
......................
阅读全部
|
gougoudan
贴于 2020年6月1日 20:01
hide
bbsi