【思路】:利用vector的动态特性和相关操作很容易实现。可以算第一次真正用STL做题,算开始了我的STL之旅吧。
【AC代码】:
#include
#include
#include
#include
using namespace std;
#define MAX 100+10
bool Comp(const int &a,const int &b)
{
return a...
分类:
其他好文 时间:
2015-03-17 10:37:02
阅读次数:
291
这是一篇阅读 "Think In Java" 中 "Holding Your Object" 章节後,练习并整理的心得文章,请各位多多指教~...
分类:
编程语言 时间:
2015-03-16 23:18:19
阅读次数:
479
【思路】:大数基本都是这思路,采用数组或者字符串,每个数采用倒序的方式从头开始存储。每次进位进到下一位上。
【AC代码】:两个数组来回颠倒。
#include
#include
#include
#include
#include
#include
using namespace std;
#define MAX 3000
int cal(int *s, int len, in...
分类:
其他好文 时间:
2015-03-16 23:11:46
阅读次数:
236
【思路】:大数处理都一样。
【AC代码】:代码细节可以美化一下。
#include
#include
#include
#include
#include
#include
using namespace std;
#define MAX 100+10
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out....
分类:
其他好文 时间:
2015-03-16 23:11:18
阅读次数:
252
1 // Components for manipulating sequences of characters -*- C++ -*- 2 3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005...
分类:
其他好文 时间:
2015-03-16 19:18:21
阅读次数:
404
1. 各种Basic: 初中以及高中阶段使用 1. 宏汇编:上大学学的时候用过,水平应该还可以。 1. pascal:上大学学的时候 1. VB:上大学做毕业设计的时候用过 1. c++:工作时用过,断断续续,越有6个月的经验,高级的功...
分类:
编程语言 时间:
2015-03-16 11:17:57
阅读次数:
118
前边,我们的例子中既有VC++开发的程序,也有Delphi开发的程序,今天我们给大家分析一个VB程序的加密和解密思路。 Virtual BASIC是由早期DOS时代的BASIC语言发展而来的可视化编程语言。 VB是由事件驱动的编程语言:就是在可视化编程环境下我们可以绘制一些窗体,按钮,编辑框...
分类:
其他好文 时间:
2015-03-15 00:29:51
阅读次数:
285
题目要求:随机生成四则运算题目//随机四则运算要求:题目避免重复可定制数量,数值范围、加减有无负数、除法有无余数等#include#includeusing namespace std;void basic(int num,int cc,int mhs,int kgs,int pyu,int max...
分类:
其他好文 时间:
2015-03-14 19:56:54
阅读次数:
143
在Android关于Canvas的API描述中,一开始就如下描述:
To draw something, you need 4 basic components: A Bitmap to hold the pixels, a Canvas to host the draw calls (writing into the bitmap),
a drawing primitive (e....
分类:
其他好文 时间:
2015-03-14 15:23:18
阅读次数:
120
十进制转十六进制
【AC代码】:更简单采用直接输出的方式。
#include
#include
#include
using namespace std;
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
int n = 0, cnt = 0, i = 0;
cin ...
分类:
其他好文 时间:
2015-03-13 22:23:24
阅读次数:
178