首页 > 2015年06月03日 > 全部分享
《找出1到正整数N中出现1的次数》
《找出1到正整数N中出现1的次数》编程思想:依次求出正整数每个位数上出现1的次数,累加即可得到最后想要的结果;而每一位上出现1的个数与和它相邻的其它位数上的数字有关系(以此位置上的数为对称轴,其左边的所有数字作为其...
分类:其他   时间:2015-06-03 00:41:47    收藏:0  评论:0  赞:0  阅读:276
[LeetCode] Contains Duplicate II
Well, the basic idea is fairly straightforward. We maintain a mappingmpfrom a value innumsto its position (index)i. Each time we meet an unseen value,...
分类:其他   时间:2015-06-03 00:41:42    收藏:0  评论:0  赞:0  阅读:280
团队站立会议4(第二阶段)
我们团队在5月29日进行了第二阶段第四次站立会议。一、前一天完成的任务:韩雪东:对倒计时工具内部控件进行了部分更改与美化柴珏辉:昨天在为主界面设计自主添加应用快捷方式功能邓锐:找了项目的图标,测试完扫雷,发现画面展现速度慢,失败后雷出现的速度也慢,尤其在游戏难度高的时候,另外,界面上还有待修改。二、...
分类:其他   时间:2015-06-03 00:41:19    收藏:0  评论:0  赞:0  阅读:231
LeetCode(13)--Roman to Integer
https://leetcode.com/problems/roman-to-integer/原题:Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to...
分类:其他   时间:2015-06-03 00:41:07    收藏:0  评论:0  赞:0  阅读:211
ASP.NETC#通用扩展函数之TypeParse 类型转换方便多了
用法: var int1 = "2".TryToInt();//转换为int失败返回0 var int2 = "2x".TryToInt(); var int3 = "2".TryToInt(1);//转换为int失败返回1 ...
分类:Windows开发   时间:2015-06-03 00:40:57    收藏:0  评论:0  赞:0  阅读:596
[LeetCode] Unique Paths II
Well, this problem is in fact the same toUnique Pathsin spirit. The introduction of obstacles only changes the boundary conditions and make some point...
分类:其他   时间:2015-06-03 00:40:47    收藏:0  评论:0  赞:0  阅读:358
windows 下编译php扩展库pecl里的扩展memcache
Memcache是一个高性能的分布式的内存对象缓存系统,通过在内存里维护一个统一的巨大的hash表,它能够用来存储各种格式的数据,包括图像、视频、文件以及数据库检索的结果等。简单的说就是将数据调用到内存中,然后从内存中读取,从而大大提高读取速度。本篇主要简述编译php及其扩展memcache,在阅读...
分类:Windows开发   时间:2015-06-03 00:40:37    收藏:0  评论:0  赞:0  阅读:555
简单编辑器的入门使用,修改编辑工具增加表情
1.编辑器的入门使用去http://ueditor.baidu.com下载选择自己需要的字符集类型,下载本地表情然后解压放在虚拟服务器admin目录下ueditor1_4_3-utf8-php 名字修改为 ueditor把里面的内容粘在一级目录下把如下代码放入需要的的body目录下,注意路径的问题不...
分类:其他   时间:2015-06-03 00:40:28    收藏:0  评论:0  赞:0  阅读:303
jQuery 遍历过滤
缩写搜索元素的范围三个最基本的过滤方法是:first(), last() 和 eq(),它们允许您基于其在一组元素中的位置来选择一个特定的元素。其他过滤方法,比如 filter() 和 not() 允许您选取匹配或不匹配某项指定标准的元素。jQuery first() 方法first() 方法返回被...
分类:Web开发   时间:2015-06-03 00:40:17    收藏:0  评论:0  赞:0  阅读:335
《Spring2之站立会议6》
《Spring2之站立会议6》昨天,向主界面中加入语音功能部分的代码;今天,查相关资料解决debug;遇到问题,一些问题是得到解决了,但是一些还未被解决。
分类:编程语言   时间:2015-06-03 00:40:00    收藏:0  评论:0  赞:0  阅读:277
[LeetCode] Unique Paths
Well, there is a nice and succinct solution to this problem using math skills. However, personally I guess it would be safer to use DP in a coding int...
分类:其他   时间:2015-06-03 00:39:47    收藏:0  评论:0  赞:0  阅读:222
《Spring2之站立会议4》
《Spring2之站立会议4》昨天,对主界面进行了设计,编写了主界面的代码,把文本输入框,显示框,发送,关闭两个按钮的功能实现了;今天,接着对主界面进行代码的编写,实现了界面的美化,从图片库中调了一些图片对其进行优化;遇到...
分类:编程语言   时间:2015-06-03 00:39:37    收藏:0  评论:0  赞:0  阅读:240
[LeetCode] Minimum Path Sum
Well, this problem is a traditional dynamic programming problem. Suppose the minimum path sum of arriving at point(i, j)isS[i][j], then we have the fo...
分类:其他   时间:2015-06-03 00:39:27    收藏:0  评论:0  赞:0  阅读:240
[LeetCode] Flatten Binary Tree to Linked List
This problem seems to be tricky at first glance. However, if you know Morris traversal, it is just the preorder case of Morris traversal and the code ...
分类:其他   时间:2015-06-03 00:39:17    收藏:0  评论:0  赞:0  阅读:188
opengles tutorial
https://developer.apple.com/library/ios/documentation/3DDrawing/Conceptual/OpenGLES_ProgrammingGuide/Introduction/Introduction.html
分类:其他   时间:2015-06-03 00:39:07    收藏:0  评论:0  赞:0  阅读:305
时间日期类型格式化
Date.prototype.format = function(format){ var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+"...
分类:其他   时间:2015-06-03 00:38:57    收藏:0  评论:0  赞:0  阅读:263
[POJ 1328] Radar Installation
Radar InstallationTime Limit:1000MSMemory Limit:10000KTotal Submissions:59563Accepted:13430DescriptionAssume the coasting is an infinite straight line...
分类:其他   时间:2015-06-03 00:38:49    收藏:0  评论:0  赞:0  阅读:320
设计模式-单例模式
定义百度文库:单例模式是一种常用的软件设计模式。在它的核心结构中只包含一个被称为单例类的特殊类。通过单例模式可以保证系统中一个类只有一个实例而且该实例易于外界访问,从而方便对实例个数的控制并节约系统资源。如果希望在系统中某个类的对象只能存在一个,单例模式是最好的解决方案。标准定义:Singleton...
分类:其他   时间:2015-06-03 00:38:38    收藏:0  评论:0  赞:0  阅读:336
CUDA 8 ---- Branch Divergence and Unrolling Loop
Avoiding Branch Divergence有时,控制流依赖于thread索引。同一个warp中,一个条件分支可能导致很差的性能。通过重新组织数据获取模式可以减少或避免warp divergence(该问题的解释请查看warp解析篇)。The Parallel Reduction Probl...
分类:其他   时间:2015-06-03 00:38:29    收藏:0  评论:0  赞:0  阅读:345
strcat函数造成的段错误(Segmentation fault)
转自:http://book.51cto.com/art/201311/419441.htm3.21 strcat函数造成的段错误代码示例intmain() { chardest[7]="12345"; char*src="abcdefghigklmnopqrstuvwxyz"; strcat(de...
分类:其他   时间:2015-06-03 00:37:38    收藏:0  评论:0  赞:0  阅读:817
2031条   上一页 1 ... 99 100 101 102 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!