码迷,mamicode.com
首页 >  
搜索关键字:name class    ( 266698个结果
C#-ColorDialog,FontDialog-文字格式的设置---ShinePans
文字格式设置: 字体颜色设置: Program.cs: using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace ColorDialog { static class Program {...
分类:其他好文   时间:2014-04-27 20:38:47    阅读次数:576
OpenCV人脸检测
对人脸进行检测#include "opencv2/core/core.hpp" #include "opencv2/objdetect/objdetect.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include #include using names...
分类:其他好文   时间:2014-04-27 20:26:15    阅读次数:596
C语言中内存的管理
一、动态内存分配与释放 1、为什么要使用动态内存分配,下面看一个实例,关于超市中购买记录的一段程序 #include #include struct Product  {     char name[128];     int price; }; struct Product pro[1000];   //1000有限制,所以要使用动态内存分配  struct Prod...
分类:编程语言   时间:2014-04-27 19:49:01    阅读次数:774
UVA 1529 - Clock(数论)
题目链接:1529 - Clock 题意:给定两个时刻,求时针和分针相遇次数。 思路:先把转一圈会相遇的时刻记录下来,这些时刻肯定是固定的,然后由给定的两个时刻a,b,求出12点到a相遇次数c1,12点到b相遇次数c2,ans = c2 - c1 代码: #include #include const double esp = 1e-6; int h1, m1, h2, m2; do...
分类:其他好文   时间:2014-04-27 19:28:46    阅读次数:352
UVA 10995 - Educational Journey(数论)
题意:10995 - Educational Journey 题意:给定A遇到C,M,D的时刻和D遇到C,M的时刻,求C遇到M的时刻 思路:先把时间都处理成秒,然后从A遇到C后,从该点出发,A遇到D和C遇到D,就能求出速度Va和Vc之间的关系,由A遇到M后,从该点出发,A遇到D和M遇到D可以推出Va和Vm的关系,从而推出Vc和Vm的关系,然后由C和M遇到点出发,C遇到D和M遇到D的时间可以算,...
分类:其他好文   时间:2014-04-27 19:23:24    阅读次数:502
Android-自定义Notification
Android-自定义Notification...
分类:移动开发   时间:2014-04-27 18:50:50    阅读次数:747
UVA 10693 10693 - Traffic Volume(数论)
题目链接:10693 - Traffic Volume 根据物理知识, 车经过的时间等于,距离/速度,所以可以列出公式t = (l + d)/v,v/2f + d/v,只有当v / 2f = d/v时,时间最小,v = sqrt(2df),之后时间也能算了。 #include #include #include double l, f; int main() { while (~s...
分类:其他好文   时间:2014-04-27 18:11:33    阅读次数:749
【技能】使用纯CSS+html写出方向箭头,简单大方,好看
使用纯CSS+html写出方向箭头,贴出来就可以用,100%原创 .pointsRule{ display: inline-block; font-size: 12px; margin-top:...
分类:Web程序   时间:2014-04-27 18:02:02    阅读次数:1452
UVA 10773 Back to Intermediate Math(数论)
题目链接:Back to Intermediate Math 题意:两种过河方式,一种笔直过河,一种最快过河,求两种时间差 只要计算出两种时间,笔直过河的速度等于两个速度分量的合速度,最快就等于船速度,求出差即可。 代码: #include #include #include int t, d, v, u; int main() { int cas = 0; scanf(...
分类:其他好文   时间:2014-04-27 17:44:30    阅读次数:489
UVA 11314 - Hardly Hard(数论)
题目链接:11314 - Hardly Hard 题意:给定A,B两点,求Y轴上一点C和X轴上一点D,使得该四边形周长最小。 思路:B以Y轴做对称点,A以X轴做对称点,然后两点相连就是其他三边的周长,因为两点间线段最短,然后再加上AB长度即可 代码: #include #include #include int t; struct Point { double x, y; Po...
分类:其他好文   时间:2014-04-27 17:40:22    阅读次数:555
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!