码迷,mamicode.com
首页 >  
搜索关键字:check point r77.30    ( 16204个结果
【足迹C++primer】56、文本查询程序
/** * 功能:文本查询程序 * 时间:2014年7月23日10:26:09 * 作者:cutter_point */ #include #include #include #include #include #include #include using namespace std; /* Alice Emma has long flowing red hair. Her Daddy s...
分类:编程语言   时间:2014-07-28 16:15:33    阅读次数:387
POJ 1066
由于到达点时不能绕墙,因为这是无意义的,所以,两点间的最小墙依然是按照直线所穿过的墙计算。#include #include #include #include using namespace std;const double eps=0.000000001;struct point{ double...
分类:其他好文   时间:2014-07-28 15:11:13    阅读次数:222
check if a linux process is done using bash
# cat > check_process_is_end.shwhile truedo sleep 30 res=`ps -ef | grep RNAhybrid` count=`grep -o "RNAhybrid" <<<"$res" | wc -l` if [ "$count" -eq "1"...
分类:系统相关   时间:2014-07-28 15:06:23    阅读次数:293
数学之路-python计算实战(19)-机器视觉-卷积滤波
filter2DConvolves an image with the kernel.C++: void filter2D(InputArray src, OutputArray dst, int ddepth, InputArraykernel, Point anchor=Point(-1,-1), double delta=0, int borderType=BORDER_DEFAULT )P...
分类:编程语言   时间:2014-07-28 00:24:39    阅读次数:294
Codeforces 50C Happy Farm 5 凸包
题目链接:点击打开链接 == 难得的y出了一道计算几何 #include #include #include #include #include using namespace std; #define INF 999999999.9 #define PI acos(-1.0) #define ll long long struct Point { ll x, y,...
分类:移动开发   时间:2014-07-28 00:15:29    阅读次数:326
[转]高精度乘法计算
转载自:Daywei 高精度乘法计算高精度乘法计算基础1.高精度浮点运算方法 高精度浮点(Floating Point,FP)运算可以转换成整数型运算。由于高精度浮点数可以看成是由整数部分(Integer Part,IP)与小数部分(Decimal Part,DP)的组合,因此其乘法可以看成以下3....
分类:其他好文   时间:2014-07-27 23:20:19    阅读次数:309
Android中获取屏幕长宽的方法
package com.kale.screen;import android.annotation.SuppressLint;import android.app.Activity;import android.graphics.Point;import android.os.Bundle;impo...
分类:移动开发   时间:2014-07-27 22:23:29    阅读次数:196
SQLServer - 约束
一、约束的分类 在SQLServer中,有3种不同类型的约束。 1、实体约束 实体约束是关于行的,比如某一行出现的值就不允许出现在其他行,例如主键。 2、域约束 域约束是关于列的,对于所有行,某一列有那些约束,例如CHECK约束。 3、参照完整性约束 如果某列的值必须与其他...
分类:数据库   时间:2014-07-27 22:06:09    阅读次数:352
TEMP1
Exception in thread "main" org.apache.xmlbeans.impl.values.XmlValueDisconnectedException at org.apache.xmlbeans.impl.values.XmlObjectBase.check_orphan...
分类:其他好文   时间:2014-07-27 21:55:09    阅读次数:296
Container With Most Water leetcode java
题目: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 e....
分类:编程语言   时间:2014-07-27 11:04:52    阅读次数:278
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!