最新 最热

vn.py入门-低买高卖示例

本文用一个例子来介绍vnpy的用法。从项目创建开始,到一个简单策略的设计。 这个例子连接到CTP接口,每秒检查一下目标合约的价格,若低于指定价格则买入,若高于指定价格则卖出。...

2018-07-26
1

高通spi 屏幕 -lk代码分析

lk SPI驱动1. 初始化时钟在lk中,我们是从kmain开始执行下来的,而执行顺序则是先初始化时钟,也就是在platform_early_init函数中开始执行的: 在这里我们需要修改这个函数中的platform_clock_init();,我们来这里看这个函数,平...

2018-06-20
1

leetCode刷题(找出数组里的两项相加等于定值)

最近被算法虐了一下,刷一下leetcode,找找存在感如题:Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that ea......

2018-06-14
1

leetcode 33 Search in Rotated Sorted Array

public class Solution { public int search(int[] A, int target) { int l = 0; int r = A.length - 1; while (l <= r) { ...

2018-06-04
1

“美妆瘾君子”——有效落实产品开发的七个步骤

摘自:快鲤鱼(http://kuailiyu.cyzone.cn/)ToniKo走上创业之路的原因并不出奇:市面上没有她想要的那种产品,于是她决定自己把它制作出来。她的产品是:品质可靠价格实惠的眼线...

2018-05-23
1

leetcode-35- Search Insert Position

题目描述:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order....

2018-05-21
1

美爆特大信用卡数据盗窃案 4000万顾客购物沦陷

美国零售巨头塔吉特公司(Target Corp。)19日声称,约4000万名顾客信用卡和借记卡账户数据在感恩节购物季期间被盗。这也是美国零售业近年来最大的信用卡数据被盗事件。美国特勤局已经介入调查。Target是仅次于全球最大...

2018-04-09
1

ZOJ 1403&&HDU 1015 Safecracker【暴力】

Safecracker----Time Limit: 2 Seconds      Memory Limit: 65536 KB----=== Op tech briefing, 2002/11/02 06:42 CST ==="The item is locked in a Klein safe behin...

2018-04-08
1

了解 Sklearn 的数据集

学习资料: 相关代码更多可用数据 网址 今天来看 Sklearn 中的 data sets,很多而且有用,可以用来学习算法模型。eg: boston 房价, 糖尿病, 数字, Iris 花。

2018-04-02
1

Shader初学笔记:简单色块红橙黄绿蓝靛紫白灰黑

o.vertex = UnityObjectToClipPos(v.vertex);

2018-03-26
1