摘要:
public class BinaMergeSort { // 将数组a[start..mid],a[mid+1..end]合并到数组union static void Merge(int[] a, int start, int mid, int end, int[] union) { // 左边数组起始下标 int left = start; // 右边数组起始下标 int right = mid + 1; // 合并到union的起始下标 int uPos = start; for (; left a[right]) { union[uPos++] = a[right... 阅读全文
摘要:
Django 微信开发(一)——环境搭建 随着移动互联网时代的到来,微信——一个改变着我们生活的产品悄悄走近了我们的生活。我们不得不觉得自己很幸运,自己能在这个世界上遇到像QQ、微博、微信这样优秀的产品,同时,也不得不感叹这些产品的强大之处。就拿微信来说吧,我们可以文字聊天、发语音、报告位置、甚至是发视频、对讲机等功能,确实为我们平时的沟通大大降低了成本,譬如以前生日祝福等都是打电话、发短信,可在微信时代我们只要发文字或者是发一段语音就好了——省钱、简单、好用。 移动互联网的时代,你不一定需要你自己的移动APP,而且自己外包给别人做成本也比较高,小小的创业公司,就算你有了自己的移动APP,.. 阅读全文
摘要:
IplImage结构体为:typedef struct _IplImage { int nSize; /* IplImage大小 */ int ID; /* 版本 (=0)*/ int nChannels; /* 大多数OPENCV函数支持1,2,3 或 4 个通道 */ int alphaChannel; /* 被OpenCV忽略 */ int depth; /* 像素的位深度: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_... 阅读全文
摘要:
Description Maybe you know “San Guo Sha”, but I guess you didn’t hear the game: “Liang Guo Sha”! Let me introduce this game to you. Unlike “San Guo Sha” with its complicated rules, “Liang Guo Sha” is a simple game, it consists only four cards, two cards named “Sha”, and the other named “Shan”.... 阅读全文
摘要:
Python源码太复杂了...今天看了下对.py文件的parse, 云里雾里的py文件是最简单的, 在python的交互式窗口 import这个模块a = 10print(a) 开始分析,堆栈如图 把static node *parsetok(struct tok_state *tok, grammar *g, int start, perrdetail *err_ret, int *flags) 展开 for (;;) { char *a, *b; int type; size_t len; char *str;... 阅读全文