首页 > 2015年12月06日 > 全部分享
1071. Speech Patterns (25)
map的使用时间限制300 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者HOU, QimingPeople often have a preference among synonyms of the same word. For example, some ma...
分类:其他   时间:2015-12-06 13:02:45    收藏:0  评论:0  赞:0  阅读:280
圣思园java se培训总结(22-24)(static , final 陷阱)
static , final 陷阱
分类:编程语言   时间:2015-12-06 13:02:35    收藏:0  评论:0  赞:0  阅读:94
1091. Acute Stroke (30)
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions ...
分类:其他   时间:2015-12-06 13:02:25    收藏:0  评论:0  赞:0  阅读:239
1057. Stack (30)
set的使用和它的迭代器的使用Stack is one of the most fundamental data structures, which is based on the principle of Last In First Out (LIFO). The basic operations...
分类:其他   时间:2015-12-06 13:02:15    收藏:0  评论:0  赞:0  阅读:187
【转】设计模式六大原则(1):单一职责原则
定义:不要存在多于一个导致类变更的原因。通俗的说,即一个类只负责一项职责。问题由来:类T负责两个不同的职责:职责P1,职责P2。当由于职责P1需求发生改变而需要修改类T时,有可能会导致原本运行正常的职责P2功能发生故障。解决方案:遵循单一职责原则。分别建立两个类T1、T2,使T1完成职责P1功能,....
分类:其他   时间:2015-12-06 13:02:05    收藏:0  评论:0  赞:0  阅读:169
1087. All Roads Lead to Rome (30)
时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueIndeed there are many different tourist routes from our city to Rome. You are supposed to fi...
分类:其他   时间:2015-12-06 13:01:45    收藏:0  评论:0  赞:0  阅读:242
使用loadNibNamed加载xib后,程序crash
最近在学ios开发,使用bundle 加载xib时第一次没问题,第二次就奔溃了,搞了一早上不知道哪里出问题了奔溃的代码段为:UIView *view = [[[NSBundle mainBundle] loadNibNamed:@"AppInfoView" owner:nil options:nil...
分类:其他   时间:2015-12-06 13:01:35    收藏:0  评论:0  赞:0  阅读:761
HDU5593 ZYB's Tree 树形DP +分治
感觉其实就是树分治,一次BC的题,感觉这次题目质量比较高,仅代表蒟蒻的看法一次DFS获取每个点到子树的距离不大于K的点的个数,然后一遍BFS获取从每个点父亲不大于K的的个数,层层扩展,还是想说其实就是树分治。。。。。并没有什么DP/*Problem : 5593 ( ZYB's Tree ) ...
分类:其他   时间:2015-12-06 13:01:25    收藏:0  评论:0  赞:0  阅读:132
驱动程序进阶篇
我们学习程序设计,都是从“Hello World”开始的,驱动程序也不例外,今天我就写一个驱动版的“Hello World”来热热身,目的希望大家能对驱动程序的基本框架有所了解。 驱动程序分为2类,一个是 Kernel(内核) 模式驱动,另一个是 Windows (用户窗口层)模式驱动,2种模式本质...
分类:其他   时间:2015-12-06 13:01:15    收藏:0  评论:0  赞:0  阅读:160
1074. Reversing Linked List (25)
reverse 方法很好用时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueGiven a constant K and a singly linked list L, you are supposed to reverse the ...
分类:其他   时间:2015-12-06 13:00:55    收藏:0  评论:0  赞:0  阅读:149
如何使用Win8系统自带杀毒软件
首先我们要说明的是,Windows Defender并不是我们杀毒首选,这只是微软在用户没有安装仍和杀软时提供的备用防护机制。因此我们如果安装了第三方的杀毒软件,系统就会将Windows Defender关闭。从控制面板中进入,在“系统和安全”下的“查看你的计算机状态”中,点击安全展开详细的内容,我...
分类:Windows开发   时间:2015-12-06 13:00:45    收藏:0  评论:0  赞:0  阅读:301
hdu 5592 ZYB's Game 树状数组
ZYB's GameTime Limit: 20 SecMemory Limit: 256 MB题目连接http://acm.hdu.edu.cn/showproblem.php?pid=5592DescriptionZYB has a premutation P,but he only remeb...
分类:编程语言   时间:2015-12-06 13:00:35    收藏:0  评论:0  赞:0  阅读:207
1088. Rational Arithmetic (20)
For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, difference, product and quotient.Input Spe...
分类:其他   时间:2015-12-06 13:00:15    收藏:0  评论:0  赞:0  阅读:363
1100. Mars Numbers (20)
People on Mars count their numbers with base 13:Zero on Earth is called "tret" on Mars.The numbers 1 to 12 on Earch is called "jan, feb, mar, apr, may...
分类:其他   时间:2015-12-06 13:00:05    收藏:0  评论:0  赞:0  阅读:238
_____________________________________动态规划之最长子序列问题______1:两个序列中的______________________________________
动态规划之最长自序列问题....两个字符串中的最长子序列问题.参考例题杭电1159.....参考文件.lcy老师的课件....在此对lcy老师致敬..最长子序列问题.......下面附上题目 Online Judge Online Exercise Online Teaching ...
分类:其他   时间:2015-12-06 12:59:55    收藏:0  评论:0  赞:0  阅读:229
1083. List Grades (25)
Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and...
分类:其他   时间:2015-12-06 12:59:45    收藏:0  评论:0  赞:0  阅读:162
第二周
一切皆为框div、h1 或 p 元素常常被称为块级元素。这意味着这些元素显示为一块内容,即“块框”。与之相反,span 和 strong 等元素称为“行内元素”,这是因为它们的内容显示在行中,即“行内框”。CSS 定位机制CSS 有三种基本的定位机制:普通流、浮动和绝对定位。除非专门指定,否则所有框...
分类:其他   时间:2015-12-06 12:59:25    收藏:0  评论:0  赞:0  阅读:191
【iOS学习笔记】一些问题
1.什么是arc?(arc是为了解决什么问题诞生的?)首先解释ARC: automatic reference counting自动引用计数。ARC几个要点:在对象被创建时 retain count +1,在对象被release时 retain count -1.当retain count 为0 时...
分类:移动平台   时间:2015-12-06 12:59:05    收藏:0  评论:0  赞:0  阅读:381
1086. Tree Traversals Again (25)
时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, Yuepush 的顺序就是二叉树的前序pop的顺序就是二叉树的中序遍历本质上还是考根据这两个顺序建立二叉树,并且进行后序遍历An inorder binary tree traversal ...
分类:其他   时间:2015-12-06 12:58:46    收藏:0  评论:0  赞:0  阅读:166
UICollectionView
#import "ViewController.h"@interfaceViewController ()@end@implementation ViewController- (void)viewDidLoad { [superviewDidLoad]; UICollectionViewFl...
分类:其他   时间:2015-12-06 12:58:26    收藏:0  评论:0  赞:0  阅读:190
1793条   上一页 1 ... 49 50 51 52 53 ... 90 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!