码迷,mamicode.com
首页 >  
搜索关键字:scheduling repeating    ( 957个结果
CSUOJ 1603 Scheduling the final examination
1603: Scheduling the final examination Time Limit:10 SecMemory Limit:128 MBSubmit:49Solved:15DescriptionFor the most of the university students,what t...
分类:其他好文   时间:2015-05-04 19:32:01    阅读次数:111
Volley框架的介绍使用
Volley是在2013年的Google I/O 2013大会上发布的,是我们的网络通信更快,更简单,更方便。对于初学者来讲是一个很好的框架。   简单来说,它提供了如下的便利功能: JSON,图像等的异步下载;网络请求的排序(scheduling)网络请求的优先级处理缓存多级别取消请求和Activity和生命周期的联动(Activity结束时同时取消所有网络请求) ...
分类:其他好文   时间:2015-05-04 11:55:07    阅读次数:164
CSU1603: Scheduling the final examination(贪心)
Description For the most of the university students,what they most want is that they can obtain 60 points from the final examination of every subject. Now, final examination is coming. As an excell...
分类:其他好文   时间:2015-05-03 20:40:06    阅读次数:117
Longest Substring Without Repeating Characters
https://leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repeatin...
分类:其他好文   时间:2015-05-03 13:14:25    阅读次数:121
LeetCode 3 -- Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:其他好文   时间:2015-04-30 15:36:25    阅读次数:135
Caching Data with Spring, Messaging with Redis, Scheduling Tasks
Caching Data with SpringMessaging with RedisScheduling Tasks
分类:编程语言   时间:2015-04-30 10:33:28    阅读次数:123
UVA 607-Scheduling Lectures(贪心+DP)
题目大意:有n(n大于等于1小于等于1000)个主题,每个主题要花费t1,t2,……,tn(每个ti都不会大于L)的时间来讲,每个讲座L(L大于等于1小于等于500)分钟;安排讲座有两个规则: 不能讲一个主题分在两个讲座讲; 必须按顺序讲,即ti要在ti-1之后讲。 每个讲座都有一个DI值,(即不满意值)设t为提前下课的分钟数,则: DI=0(若t=0)或DI=-C(若t大于等于1小于等于...
分类:其他好文   时间:2015-04-29 10:04:07    阅读次数:185
UVA202循环小数Repeating Decimals
Repeating DecimalsThe decimal expansion of the fraction 1/33 is , where the is used to indicate that the cycle 03 repeats indefinitely with no interve...
分类:其他好文   时间:2015-04-28 15:52:54    阅读次数:114
[LeetCode]-003-Longest Substring Without Repeating Characters
网址:https://leetcode.com/problems/longest-substring-without-repeating-characters/ 题意: 求出最长子字符串且不含重复字符 分析: 题意比较简单 只需要注意字符串为空的特殊情况. 字符是char的0-255,不仅仅是26个小写字母. 解法: 一直统计长度,直到有字符被重复为止,再记录被重复的字符的下一位...
分类:其他好文   时间:2015-04-27 23:49:44    阅读次数:126
【LeetCode】003 Longest Substring Without Repeating Characters
题目:LeetCode 003 Longest Substring Without Repeating Characters题意:给一个字符串,找到一个没有重复字符的最长子串。样例:”bbbbb” 返回”b”的长度1;”abcabcbb”返回”abc”的长度3。思路:动态规划。dp[i]表示以第i个...
分类:其他好文   时间:2015-04-26 18:15:18    阅读次数:117
957条   上一页 1 ... 67 68 69 70 71 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!