导入判断触摸点是否在一个多边形的内部方法1、数学方法这个方法的好处是任意平台都可以使用,不仅现于Android算法:求解通过该点的水平线与多边形各边的交点,单边交点为奇数,则成立ok我们其实就是需要看这个点的单边射线与多边形的交点,代码实现如下:public boolean isInPolygon(Point point, Point[] points, int n) {
int nCross...
分类:
其他好文 时间:
2014-10-09 17:47:27
阅读次数:
160
The number of CPU instruction sets has kept growing, and likewise for the operating systems which are able to run and support on more than one CPU sys...
分类:
系统相关 时间:
2014-10-09 17:02:47
阅读次数:
1016
第二章 防御性编程
猜字游戏
/**
* 书本:【ThinkingInC++】
* 功能:实现一个猜谜的游戏
* 时间:2014年10月8日21:54:44
* 作者:cutter_point
*/
#include
#include
#include
using namespace std;
int main()
{
cout<<"自己想出来一个数字,在1到100之间的,...
分类:
编程语言 时间:
2014-10-09 16:43:38
阅读次数:
227
第一章 异常处理
1.5清理
1.5.1 资源管理
如果一个对象的构造函数在执行过程中抛出异常,那么这个对象的析构函数就不会被调用。
Rawp.cpp
/**
* 书本:【ThinkingInC++】
* 功能:资源管理
* 时间:2014年10月8日20:19:03
* 作者:cutter_point
*/
#include
#include
using namespace s...
分类:
编程语言 时间:
2014-10-09 15:38:08
阅读次数:
235
[leetcode]Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center)....
分类:
其他好文 时间:
2014-10-09 15:33:58
阅读次数:
193
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
# Check if user is root
if [ $(id -u) != "0" ]; then
echo "Error: You must be root to run this scr...
分类:
其他好文 时间:
2014-10-09 14:51:44
阅读次数:
267
daSet=session.query(da).all()for da in daSet: da.mount_list=map(lambda x:x.mount_point , x for x in da.driver )daSet=session.query(da,da.driver).all(....
分类:
其他好文 时间:
2014-10-09 13:41:43
阅读次数:
195
这道题真真是在面试中碰到过,可惜当时复杂度到O(n2)了,太挫了,怪不得没有通过面试。
Given n non-negative integers a1, a2,
..., an, where each represents a point at coordinate (i, ai). n vertical
lines are drawn such that the two en...
分类:
编程语言 时间:
2014-10-09 01:58:17
阅读次数:
229
上面的这种用的是方法类,大方法是register,里面定义的二个小方法,一个是对用户名的check,一个是对密码的check.个人觉得通过域,来对function进行管理,规划最简单明了。
分类:
Web程序 时间:
2014-10-09 01:55:47
阅读次数:
261
1 // section_6.cpp : Defines the entry point for the console application. 2 //范磊C++ 第6章 面向对象 3 4 #include "stdafx.h" 5 #include "iostream" 6 ...
分类:
编程语言 时间:
2014-10-09 00:54:37
阅读次数:
292