首页 > 2014年08月02日 > 全部分享
C/C++中计算两个时间相差的天数
在系统中经常用到time()函数获取系统时间,也就是通常所说的日历时间,这个时间是从1970年1月1日0时开始到现在的秒数。 问:已有日历时间t1和t2(假设t1>t2),如何计算他们之间相差的天数。 答:           day = (t1+time_zone*60*60)/time_of_day - (t2+time_zone*60*60)/time_of_day      其中t...
分类:编程语言   时间:2014-08-02 18:22:23    收藏:0  评论:0  赞:0  阅读:919
ZOJ 1639 Hang Up the System (状态压缩)
Hang Up the System Time Limit: 2 Seconds      Memory Limit: 32768 KB You're going to design a multi-task operating system for an embedded system. Because the resources are limited on this mini c...
分类:其他   时间:2014-08-02 18:22:13    收藏:0  评论:0  赞:0  阅读:333
【代码优化】返回0长度数组或者集合
改掉你从C语言继承过来的习惯,我们在java中没理由返回类型为数组或者集合返回null。 private final List InStock =...; public Cheese[] getCheeses() { if( InStock.size() ==0){ return null; } } 这种是我们经常使用的 返...
分类:其他   时间:2014-08-02 18:22:04    收藏:0  评论:0  赞:0  阅读:273
Ubuntu:Codeblocks编译OpenGL超级宝典(第5版)的实例
在Ubuntu或其他Linux系统,使用Codeblocks运行OpenGL超级宝典(第5版)的代码。本文主要对Codeblocks进行相关配置,并对书上的GLTools目录中相关文件进行修改,以可以使用GLTools工具,方便快速创建自己的OpenGL项目。...
分类:其他   时间:2014-08-02 18:21:54    收藏:0  评论:0  赞:0  阅读:511
UVA 10298 - Power Strings(KMP)
UVA 10298 - Power Strings 题目链接 题意:本意其实就是,给定一个字符串,求出最小循环节需要几次循环出原字符串 思路:利用KMP中next数组的性质,n - next[n]就是最小循环节,然后n / 循环节就是答案 代码: #include #include const int N = 1000005; char str[N]; int ...
分类:其他   时间:2014-08-02 18:21:43    收藏:0  评论:0  赞:0  阅读:425
Eclipse设置字体,系统中有该字体但是选不到
Eclipse设置字体,系统中有该字体但是选不到...
分类:系统服务   时间:2014-08-02 18:21:23    收藏:0  评论:0  赞:0  阅读:278
Python 官方代码threading模块的一个死锁的bug
Python的threading模块有一个比较严重的bug:那就是可能会让线程的等待提前结束或者延迟,该篇文章分析了问题产生的原因和提出了相应的解决方法...
分类:编程语言   时间:2014-08-02 18:21:14    收藏:0  评论:0  赞:0  阅读:1001
Asp.Net+Grid Report完成Web报表
用Asp.Net+Grid Report完成Web版的报表功能,希望大家喜欢...
分类:Web开发   时间:2014-08-02 18:21:13    收藏:0  评论:0  赞:0  阅读:367
Codeforces 453B Little Pony and Harmony Chest 状压dp
题目链接:点击打开链接 b的数字最多只能达到59,因为选>=60 不如选1 所以状压一下前面出现过的素数即可,在59内的素数很少 然后暴力转移。。 #include #include #include #include #include const int Inf = (int)(1e9); const int S = 1 << 17; const int N = 100 + 2...
分类:其他   时间:2014-08-02 18:20:53    收藏:0  评论:0  赞:0  阅读:336
Codeforces 453A Little Pony and Expected Maximum 概率题Orz
题目链接:点击打开链接 #include #include #include using namespace std; #define INF 0x3f3f3f3f #define eps 1e-8 #define pi acos(-1.0) typedef long long ll; int main() { int i, j; double m,n; while...
分类:其他   时间:2014-08-02 18:20:43    收藏:0  评论:0  赞:0  阅读:310
ZOJ 1642 Match for Bonus(dp)
Match for Bonus Time Limit: 2 Seconds      Memory Limit: 65536 KB Roy played a game with his roommates the other day.  His roommates wrote 2 strings of characters, and gave each character a b...
分类:其他   时间:2014-08-02 18:20:33    收藏:0  评论:0  赞:0  阅读:347
Climbing Stairs
问题:上楼每次能走一步或两步,有多少种走法class Solution {public: int a[1000]; int dfs(int n) { if(n<0) return 0; if(n==0) return 1; if(a[n])...
分类:其他   时间:2014-08-02 18:19:03    收藏:0  评论:0  赞:0  阅读:315
org.apache.jasper.JasperException:省略"/html/sysmaintain/authority/user/../../module/verify_login.jsp" not found
说明了JSP页面里引用安全登录页面的jsp路径代码:这句代码引用的路径是错误的。解决办法:确认路径并修改成正确路径即可。
分类:Web开发   时间:2014-08-02 18:18:53    收藏:0  评论:0  赞:0  阅读:359
Activiti常用类介绍
为什么要使用工作流?传统的设计在流程发生变化时的弊端: 1. 流程相关的属性和业务对象的属性,都放到了业务对象中。 2. 流程相关的逻辑和业务逻辑,都放到的业务逻辑中常用类 ProcessEngineConfiguration 流程引擎配置对象(配置数据库连接信息和建表策略) Pro...
分类:其他   时间:2014-08-02 18:18:43    收藏:0  评论:0  赞:0  阅读:283
Linux Rootkit Sample && Rootkit Defenser Analysis
This paper attempts to analyze the characteristics from the attacker's point of view about the currentopen source rootkit key technology, hope can fin...
分类:系统服务   时间:2014-08-02 18:18:34    收藏:0  评论:0  赞:0  阅读:530
HDU 4906
超时递推实现 f[i][j]表示前i个数能够表示j状态的方案数,其中j为最多20位的二进制,表示前i个数的和(1-20)是否达到#include "cstdio"#include "cstring"#define min(x,y) (x>y?y:x)#define MOD 1000000007int...
分类:其他   时间:2014-08-02 18:18:03    收藏:0  评论:0  赞:0  阅读:336
发工资了
Problem Description作为杭电的老师,最盼望的日子就是每月的8号了,因为这一天是发工资的日子,养家糊口就靠它了,呵呵但是对于学校财务处的工作人员来说,这一天则是很忙碌的一天,财务处的小胡老师最近就在考虑一个问题:如果每个老师的工资额都知道,最少需要准备多少张人民币,才能在给每位老师发...
分类:其他   时间:2014-08-02 18:17:53    收藏:0  评论:0  赞:0  阅读:380
优美英文
1) I love you not because of who you are, but because of who I am when I am with you. 我爱你,不是因为你是一个怎样的人,而是因为我喜欢与你在一起时的感觉。 2) No man or woman is wo...
分类:其他   时间:2014-08-02 18:17:43    收藏:0  评论:0  赞:0  阅读:258
MySql 修改外键 支持级联删除
首先必须要有外键,InnoDB甚么的都不说了,直接上修改句子。ALTER TABLE `t_terminal`DROP FOREIGN KEY `FK704405E7F06A14EF`;ALTER TABLE `t_terminal`ADD CONSTRAINT `FK704405E7F06A14E...
分类:数据库技术   时间:2014-08-02 18:17:23    收藏:0  评论:0  赞:0  阅读:348
Merge Two Sorted Lists
问题:有序合并两个有序链表分析:归并排序的合并部分class Solution {public: ListNode *mergeTwoLists(ListNode *l1, ListNode *l2) { ListNode *helper=new ListNode(0); ...
分类:其他   时间:2014-08-02 18:17:03    收藏:0  评论:0  赞:0  阅读:349
1092条   上一页 1 ... 14 15 16 17 18 ... 55 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!