//// main.c// Pointer_search//// Created by ma c on 15/8/2.// Copyright (c) 2015年 bjsxt. All rights reserved.// 要求:通过指针查找,实现比较两个有序数组中的元素,输出两个数组中的第一个相同...
分类:
编程语言 时间:
2015-08-04 20:56:54
阅读次数:
202
一、公钥加密假设一下,我找了两个数字,一个是1,一个是2。我喜欢2这个数字,就保留起来,不告诉你们(私钥),然后我告诉大家,1是我的公钥。我有一个文件,不能让别人看,我就用1加密了。别人找到了这个文件,但是他不知道2就是解密的私钥啊,所以他解不开,只有我可以用数字2,就是我的私钥,来解密。这样我就可...
分类:
其他好文 时间:
2015-08-04 20:57:21
阅读次数:
112
总算今天静下心来学算法。。DescriptionInnocent Wu follows Dumb Zhang into a ancient tomb. Innocent Wu’s at the entrance of the tomb while Dumb Zhang’s at the end of...
分类:
其他好文 时间:
2015-08-04 20:56:29
阅读次数:
146
我们手机游戏中,通过上报收集到的数据来分析,发现相当多的一部分用户,在请求一些配置时会遇到无法解析的情况,或者域名的解析直接被拦截了。 特别是游戏的补丁包文件(放在CDN上),遇到的域名解析失败是最多的,比较小的配置可以通过请求动态接口来获得数据,但是比较大的补丁文件,比如单个zip就超过15M这样...
分类:
移动开发 时间:
2015-08-04 20:55:57
阅读次数:
154
Lua是一个小巧高效的解释型脚本语言,可以方便的嵌入到任意的语言中,很多应用程序、游戏使用LUA作为自己的嵌入式脚本语言,以此来实现可配置性、可扩展性。这其中包括魔兽世界、博德之门、愤怒的小鸟、VOCALOID3、太阳神三国杀等。下载和编译下载连接:http://www.lua.org/downlo...
分类:
其他好文 时间:
2015-08-04 20:55:40
阅读次数:
208
原文地址:http://blog.sina.com.cn/s/blog_605f5b4f0100x3ep.html首先声明:在VC++下编译printf不会自动做类型转换,比如int a=3; printf("%f",a);运行过程中会报错,runtime error R6002: floating...
分类:
其他好文 时间:
2015-08-04 20:55:29
阅读次数:
127
DescriptionMr. Tenant is going to buy a new house. In fact, he is going to buy a piece of land and build his new house on it. In order to decide which...
分类:
其他好文 时间:
2015-08-04 20:56:47
阅读次数:
135
DescriptionYour current task is to make a ground plan for a residential building located in HZXJHS. So you must determine a way to split the floor bui...
分类:
其他好文 时间:
2015-08-04 20:55:14
阅读次数:
179
题目:Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique p...
分类:
编程语言 时间:
2015-08-04 20:54:14
阅读次数:
187
个人工作中的SSD、Cardreader、Camera、Audio模块文档组织形式如下:RclLib__init__.pyRclLegacy.pymodulesAgilentOp.pyUvcCam.pyUvcCam.dll注:RclLib存放于:C:\Python27\Lib\site-packag...
分类:
编程语言 时间:
2015-08-04 20:55:54
阅读次数:
167
0x00 起最近在做一个对时间要求比较高的扫描器,需要封装一下SOCKET模拟HTTP发包的一些常用函数。简单的说,就是重写一下requests中的get、post方法。今天在写的时候,遇到一枚很奇怪的问题,对同一个URL,POST请求能正常返回信息,而一旦切到GET,socket time out...
分类:
编程语言 时间:
2015-08-04 20:53:25
阅读次数:
339
Problem Definition:The set [1,2,3,…,n] contains a total of n! unique permutations.By listing and labeling all of the permutations in order,We get the ...
分类:
其他好文 时间:
2015-08-04 20:55:04
阅读次数:
136
From: http://blog.chinaunix.net/uid-22414998-id-2945656.html This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决这次国庆节回来后的测试中,在一个My...
分类:
数据库 时间:
2015-08-04 20:54:14
阅读次数:
131
Basics of Ensemble Learning Explained in Simple EnglishIntroductionEnsemble modeling is a powerful way to improve performance of your model. It usuall...
分类:
其他好文 时间:
2015-08-04 20:55:50
阅读次数:
156
1 import java.math.*; 2 import java.util.Scanner; 3 4 5 public class Main{ 6 public static void main(String[] args){ 7 int a; 8 ...
分类:
编程语言 时间:
2015-08-04 20:54:11
阅读次数:
119
http://www.itpub.net/forum.php?mod=viewthread&tid=1761963以前在数据库维护中,基本都是碰到表被锁的情况,然后就是查找被锁的表相关的信息,通过v$session视图查找到相关的sid和serial#,通过alter system kill ses...
分类:
数据库 时间:
2015-08-04 20:54:43
阅读次数:
249
基础知识 二分非递归写法: int binary_search(const int a[], const int size, const int val) { int lower = 0; int upper = size-1; /* invariant: if a[i]==val for any ...
分类:
编程语言 时间:
2015-08-04 20:54:22
阅读次数:
178