//数据转换函数
//WORD to BYTE
void CICONV::SetWordToByte(WORD wCardData, BYTE & cbCardData)
{
BYTE cbColor = wCardData >> 8;
if (cbColor == 4)
{
cbCardData = 0x40|((wCardData & 0x000f) +...
分类:
其他好文 时间:
2015-08-26 20:11:38
阅读次数:
198
1. 对于直接已知值的int,long,short,char 类型以及其unsigned版本,即 const int a=2; 这种,编译器编译程序之后,程序中所有a出现的地方,全部自动替换成2. 所以,就出现了对于 *b=3 ,在 const int a=2 ;中不会修改a,而在 const int a=c; 中则会修改 a的情况.
int main()
{
const int a = 1...
分类:
其他好文 时间:
2015-08-26 20:10:35
阅读次数:
152
public class TextDrawView extends View {
private int textColor = 0xffafafaf;
private float textSize = 12;
private String textToDraw = "";
private List textLines=new ArrayList();
pr...
分类:
其他好文 时间:
2015-08-26 20:08:54
阅读次数:
105
1. 简单 HTML 页面
Trees, trees, everywhere
Trees, trees, everywhere
Welcome to a really boring page.
Co...
分类:
Web程序 时间:
2015-08-26 20:10:44
阅读次数:
156
#include
using namespace std;
/*
1)先使用快速排序,使得两个数组有序;
2)然后利用二分查找的方法,在数组B中查找;
3)其中,注意在数组B中,使用二分查找的起点,是根据上次查找的结果开确定的;这样可以进一步提高速度;
*/
int Sort(int array[],int low,int high)
{
int temp=array[low];
int po...
分类:
编程语言 时间:
2015-08-26 20:09:01
阅读次数:
721
题意:
给出S个自动机,每个自动机有n个结点和m个输出结点;
每个结点有两个后继'0'和'1',将当前走过的串末尾加那个字符,然后走到下一个结点;
每次从0号点,以一个空串出发,到了输出结点时可以选择输出当前串;
如果一个自动机x可以输出的所有串另一个自动机y也都可以输出,那么y是x的升级;
求最大升级序列;
S,n,m
题解:
这道题稍微考虑一下之后,发现难以处理的地方是...
分类:
其他好文 时间:
2015-08-26 20:09:09
阅读次数:
167
saledGoodsArray数组中存储商品对象saledgoods,saledgoods有seatNo属性,将saledGoodsArray数组中saledgoods对象相同座位儿号的商品赋值给同一个人(personObject)的购买商品数组(purchasedGoodsArr)。刚发现可以这样写,惭愧得紧! dataArray = [[NSMutableArray alloc] init];...
分类:
移动开发 时间:
2015-08-26 20:09:42
阅读次数:
130
在树莓派安装ftp服务器,可上载\下载文件
vsftpd是开源的轻量级的常用ftp服务器.
1,安装vsftpd服务器 (约400KB)
sudo apt-get install vsftpd
2,启动ftp服务
sudo service vsftpd start
3,编辑vsftdp的配置文件
sudo na...
分类:
其他好文 时间:
2015-08-26 20:10:23
阅读次数:
221
Cocos2dx-3.4 打包成apx
1. 要注意pro.android\jni\Android.mk添加自己不是cocos2dx自己生成的ccp\
或者修改Android.mkFILE_LIST := hellocpp/main.cpp
FILE_LIST += $(wildcard $(LOCAL_PATH)/../../Classes/*.cpp) LOCAL_SRC_FILES...
分类:
其他好文 时间:
2015-08-26 20:09:16
阅读次数:
223
找新朋友
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 9387 Accepted Submission(s): 4974
Problem Description
新年快到了,“猪头帮协会”准备搞一个聚会,...
分类:
其他好文 时间:
2015-08-26 20:08:14
阅读次数:
196
click here ~~ ***A. Elections***The country of Byalechinsk is running elections involving n candidates. The country consists of m cities. We know how many peop...
分类:
其他好文 时间:
2015-08-26 20:08:47
阅读次数:
193
It's been a long day without you my friend 没有老友你的陪伴 日子真是漫长 And I'll tell you all about it when I see you again 与你重逢之时 我会敞开心扉倾诉所有 We've come a long way from where we began 回头凝望 我们携手走过漫长的旅程 Oh I'll...
分类:
其他好文 时间:
2015-08-26 20:07:45
阅读次数:
233
Kth Largest Element in an Array
题目:找到数组中第K大的数
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinc...
分类:
其他好文 时间:
2015-08-26 20:09:56
阅读次数:
151
不久前听说股市大跌还跟马云有关,说其控股的恒生电子开发股票操盘系统导致股市激烈震荡。我乍一看,好像没什么道理,股市操作软件本来就有啊,也不止恒生一家,为何专找马云的茬。
但是仔细想想,还是有意一定的道理,如果人工智能进入股票操作系统,能很好的操控股市,必然获利巨大。而股票人工智能系统绝不是子虚乌有。
这里要问一下,为什么股市能在几个月内高速上涨(高点出货),然后又高速下跌呢?既然股市是...
分类:
其他好文 时间:
2015-08-26 20:08:47
阅读次数:
154
题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1149代码:#include
#include
#include
#include
#include
#include
#include <sstre...
分类:
其他好文 时间:
2015-08-26 20:06:37
阅读次数:
170
Web设计中打开新页面或页面跳转的方法一、asp.net c# 打开新页面或页面跳转1. 最常用的页面跳转(原窗口被替代):Response.Redirect("newpage.aspx");2. 利用url地址打开本地网页或互联网:Respose.Write("");3. 原窗口保留再新打开另一个...
分类:
Web程序 时间:
2015-08-26 20:06:13
阅读次数:
226
原文:http://my.oschina.net/tommyfok/blog/287748很多时候我们需要用ajax提交post数据,angularjs与jq类似,也有封装好的post。但是jQuery的post明显比angularjs的要简单一些,人性化一些。AngularJS:?1234$htt...
分类:
Web程序 时间:
2015-08-26 20:08:43
阅读次数:
125