首页 > 2014年07月22日 > 全部分享
第七讲:HTML5中的canvas两个小球全然弹性碰撞
小球之间的碰撞(全然弹性碰撞)
分类:Web开发   时间:2014-07-22 22:34:26    收藏:0  评论:0  赞:0  阅读:321
Android中的ACCESS_MOCK_LOCATION权限使用Demo
The DDMS tool can be used to push out test location during testing. However, it has two serious limitations:DDMS sets location for GPS location provid...
分类:移动平台   时间:2014-07-22 22:34:26    收藏:0  评论:0  赞:0  阅读:718
POJ1061 青蛙的约会
一、题目POJ 1061 青蛙的约会【关于“欧几里得求最大公约数”和“扩展欧几里得算法”的题目】二、题目源程序#include using namespace std;#define LL long longLL gcd(LL a, LL b){ return b ? gcd(b, a%b)...
分类:其他   时间:2014-07-22 22:34:26    收藏:0  评论:0  赞:0  阅读:300
编程中无穷大常量的设定技巧
编程中无穷大常量的设定技巧Posted on 2012 年 11 月 21 日 by Aikilis 如 果问题中各数据的范围明确,那么无穷大的设定不是问题,在不明确的情况下,很多程序员都取0x7fffffff作为无穷大,因为这是32-bit int的最大值。如果这个无穷大只用于一般的比较(比如.....
分类:其他   时间:2014-07-22 22:34:43    收藏:0  评论:0  赞:0  阅读:359
assert()函数用法总结——转
assert宏的原型定义在中,其作用是如果它的条件返回错误,则终止程序执行,原型定义:#include void assert( int expression ); assert的作用是现计算表达式 expression ,如果其值为假(即为0),那么它先向stderr打印一条出错信息,然后通过调....
分类:其他   时间:2014-07-22 22:34:43    收藏:0  评论:0  赞:0  阅读:312
运算符重载
加法还可用友元函数,两个参数的方式实现。#include #include #include #include using namespace std;class Matrix{public: Matrix(){memset(this->_mat,0,sizeof(this->_mat));}...
分类:其他   时间:2014-07-22 22:34:43    收藏:0  评论:0  赞:0  阅读:189
数组中出现次数超过一半的数字
//方案一: O(N)? 不适合海量数据int* maxK(int A[] , const int& n, const int& k){ if(np) --end; if(begin>=end) return begin; swap(A[begin],A[end]); ...
分类:其他   时间:2014-07-22 22:34:44    收藏:0  评论:0  赞:0  阅读:319
php之无限极分类
首先建立分类信息表:[sql] view plaincopyCREATETABLEIFNOTEXISTS`category`(`categoryId`smallint(5)unsignedNOTNULLAUTO_INCREMENT,`parentId`smallint(5)unsignedNOTNU...
分类:Web开发   时间:2014-07-22 22:34:44    收藏:0  评论:0  赞:0  阅读:451
win8.1无法安装安装.net framework 3.5 解决办法【转】
安装流程1。以系统管理员开启命令提示符(命令提示字符)2挂载windows8.1异3,在命令提示符下输入Dism /online /enablefeature/featurename:NetFx3 /All /Source:x:\sources\sxs /LimitAccessps; X:ISO挂载...
分类:Windows开发   时间:2014-07-22 22:34:44    收藏:0  评论:0  赞:0  阅读:472
C语言笔记
最近在学习C语言,下面就是自己在学习C语言过程中获得的小技巧或小心得:1.获取整型数据类型的最值 ANSI标准头文件limits.h中,预定义了许多常量,这些常量容纳了各种类型的最大值或最小值 CHAR_BIT:char类型的二进制位数(bit) SCHAR_MIN:signed char...
分类:编程语言   时间:2014-07-22 22:34:45    收藏:0  评论:0  赞:0  阅读:299
NHibernate学习系列一
有段时间没有学习些东西了,是该扩充自己的知识库了;在接下来一段时间准备学习一下NHibernate,同时把自己的学习心得与大家进行分享一下,希望可以帮助到那些想要学习NHibernate的童鞋们;同时也希望高手能够指点一二,帮助菜鸟提升!
分类:系统服务   时间:2014-07-22 22:34:45    收藏:0  评论:0  赞:0  阅读:456
ERROR 1130 (HY000): Host '192.168.0.190' is not allowed to connect to this MySQL serv
环境:CentOS6.2、MySQL5.1问题描述:在配置文件中将
分类:数据库技术   时间:2014-07-22 22:34:45    收藏:0  评论:0  赞:0  阅读:364
su - user解释
su [-fmp] [-c command] [-s shell] [--help] [--version] [-] [USER [ARG]]-c command:变更账号为USER的使用者,并执行指令(command)后再变回原来使用者。Linux下 su命令与su - 命令有什么区别?su us...
分类:其他   时间:2014-07-22 22:34:45    收藏:0  评论:0  赞:0  阅读:284
LeetCode Best Time to Buy and Sell Stock III
class Solution {public: int maxProfit(vector &prices) { int len = prices.size(); if (len i2r(len, 0); vector i2l(len, 0); ...
分类:其他   时间:2014-07-22 22:34:45    收藏:0  评论:0  赞:0  阅读:306
MySQL-python 1.2.3 for Windows and Python 2.7, 32bit and 64bit versions -(亲测可用)
MySQL-python 1.2.3 for Windows and Python 2.7, 32bit and 64bit versions - See more at: http://www.codegood.com/archives/129#sthash.dc3d3aib.dpufhttp:/...
分类:数据库技术   时间:2014-07-22 22:34:46    收藏:0  评论:0  赞:0  阅读:398
如何查询全年中的星期天日期
select to_char(d,'yyyymmdd') from (select (trunc( to_date('2014-01-01','yyyy-mm-dd') + (rownum - 1)) ) d from dual connect by rownum<=365)where to_cha...
分类:其他   时间:2014-07-22 22:34:46    收藏:0  评论:0  赞:0  阅读:320
DINOR闪存知识
闪速存储器(Flash Memory)是一类非易失性存储器NVM(Non-Volatile Memory)即使在供电电源关闭后仍能保持片内信息;而诸如DRAM、SRAM这类易失性存储器,当供电电源关闭时片内信息随即丢失。 Flash Memory集其它类非易失性存储器的特点:与EPROM相比较,.....
分类:其他   时间:2014-07-22 22:34:46    收藏:0  评论:0  赞:0  阅读:499
C#查看各种变量的指针地址
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { struct XYZ { ...
分类:其他   时间:2014-07-22 22:34:47    收藏:0  评论:0  赞:0  阅读:313
annexb模式
h264有两种封装,一种是annexb模式,传统模式,有startcode,SPS和PPS是在ES中一种是mp4模式,一般mp4 mkv会有,没有startcode,SPS和PPS以及其它信息被封装在container中,每一个frame前面是这个frame的长度很多解码器只支持annexb这种模式...
分类:其他   时间:2014-07-22 22:34:47    收藏:0  评论:0  赞:0  阅读:418
linux 下查看二进制文件
查看二进制有以下几种方法:方法一:hexdumpapt-get install libdata-hexdumper-perl安装好之后就可以直接hexdump your_binary_file也可以直接使用hd命令来代替hexdump如果想要慢慢看 : hd your_binary_file | m...
分类:系统服务   时间:2014-07-22 22:35:02    收藏:0  评论:0  赞:0  阅读:377
3934条   上一页 1 ... 30 31 32 33 34 ... 197 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!