Card Trick
时间限制:1000 ms | 内存限制:65535 KB
难度:3
描述
The magician shuffles a small pack of cards, holds it face down and performs the following procedure:
The top card is moved to the bottom of ...
分类:
其他好文 时间:
2014-05-13 05:17:49
阅读次数:
249
其题目如下:#pragma pack(2)class A{public: int
i; union U { char buff[13]; int i; }u; void foo() { } typedef char*
(*f)(void*); enum{red, green, blue} ...
分类:
其他好文 时间:
2014-05-12 21:18:19
阅读次数:
321
个人的小程序需要匹配一些简单的通配符,如*?之类。抽时间写了一个 1 #pragma once
2 #ifndef CHECKER 3 #define CHECKER 4 5 #include 6 #include 7 #include 8 using
namespace s...
分类:
其他好文 时间:
2014-05-12 19:29:51
阅读次数:
386
一、安装1、命令apt-get install
kubuntu-desktop2、下载完成后会弹一个选择登陆默认桌面环境的框装好以后,还可以用下面的命令再调出来dpkg-reconfigure
kdm3、安装中文环境apt-get install language-pack-kde-zh langu...
分类:
其他好文 时间:
2014-05-12 13:47:56
阅读次数:
301
邻接矩阵的图示:
构建一个这样的无向邻接矩阵。
参考网站: http://www.geeksforgeeks.org/graph-and-its-representations/
这里写了个类,增加删除图的操作。
#pragma once
#include
#include
class AdjListGraph
{
struct Node
{
int dest;
...
分类:
其他好文 时间:
2014-05-11 22:44:20
阅读次数:
378
#include #include #include #include #include
#include #include #include #include #include #include #include using namespace
std;//#pragma comment(link...
分类:
其他好文 时间:
2014-05-11 17:31:00
阅读次数:
275
之前用GUI+的时候一直都是用的#include #pragma comment(lib,
"gdiplus.lib")using namespace
Gdiplus;但是偶发现当多个文件包含的时候,会报很多错误~~1>f:\vs2013\vc\include\gdiplusenums.h(29)....
分类:
其他好文 时间:
2014-05-11 16:28:06
阅读次数:
730
#pragma pack (n) /*指定按n字节对齐*/ 不写这句默认n =8
设真正的对齐长度为m字节
如果n>结构体中数据类型(包括类类型)长度最大的数据类型长度,m = 结构体中最大数据类型长度
否则 m = n
总之,真正的对齐长度m为指定对齐长度n与结构体中最大类型长度中的较小值。
规则:
1. 结构体变量的首地址能够被m所整除;
2. 结构体每个...
分类:
其他好文 时间:
2014-05-11 13:32:36
阅读次数:
299
zTree实现地市县三级级联封装类
Province.java:
/**
* @Title:Province.java
* @Package:com.gwtjs.model
* @Description:省份封装类
* @author:Youhaidong(游海东)
* @date:2014-5-10 下午5:17:16
* @version V1.0
*/
pack...
分类:
其他好文 时间:
2014-05-11 03:27:20
阅读次数:
292
tableView 实现的方法 无分组的cell
#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.contacts.count;
}
- (UITable...
分类:
移动开发 时间:
2014-05-09 21:03:32
阅读次数:
424