码迷,mamicode.com
首页 > 2015年06月03日 > 全部分享
并发编程笔记Outline
并发编程笔记总纲:动机、计划、参考书籍和进展。
分类:其他好文   时间:2015-06-03 00:43:35    阅读次数:230
团队站立会议4(第二阶段)
我们团队在5月29日进行了第二阶段第四次站立会议。一、前一天完成的任务:韩雪东:对倒计时工具内部控件进行了部分更改与美化柴珏辉:昨天在为主界面设计自主添加应用快捷方式功能邓锐:找了项目的图标,测试完扫雷,发现画面展现速度慢,失败后雷出现的速度也慢,尤其在游戏难度高的时候,另外,界面上还有待修改。二、...
分类:其他好文   时间:2015-06-03 00:42:50    阅读次数:235
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:43:07    阅读次数:181
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:41:46    阅读次数:218
[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:43:14    阅读次数:156
windows 下编译php扩展库pecl里的扩展memcache
Memcache是一个高性能的分布式的内存对象缓存系统,通过在内存里维护一个统一的巨大的hash表,它能够用来存储各种格式的数据,包括图像、视频、文件以及数据库检索的结果等。简单的说就是将数据调用到内存中,然后从内存中读取,从而大大提高读取速度。本篇主要简述编译php及其扩展memcache,在阅读...
分类:Windows程序   时间:2015-06-03 00:42:46    阅读次数:263
简单编辑器的入门使用,修改编辑工具增加表情
1.编辑器的入门使用去http://ueditor.baidu.com下载选择自己需要的字符集类型,下载本地表情然后解压放在虚拟服务器admin目录下ueditor1_4_3-utf8-php 名字修改为 ueditor把里面的内容粘在一级目录下把如下代码放入需要的的body目录下,注意路径的问题不...
分类:其他好文   时间:2015-06-03 00:40:53    阅读次数:150
jQuery 遍历过滤
缩写搜索元素的范围三个最基本的过滤方法是:first(), last() 和 eq(),它们允许您基于其在一组元素中的位置来选择一个特定的元素。其他过滤方法,比如 filter() 和 not() 允许您选取匹配或不匹配某项指定标准的元素。jQuery first() 方法first() 方法返回被...
分类:Web程序   时间:2015-06-03 00:43:10    阅读次数:199
Spring+JDBC Template应用步骤
1、应用步骤介绍 基于SpringMVC和JDBC技术开发的主要步骤如下 创建工程,搭建SpringMVC和JDBC技术环境 基于JdbcTemplate实现DAO组件 编写和配置SpringMVC的主要组件,例如Controller,HandlerMapping,ViewRes...
分类:数据库   时间:2015-06-03 00:40:14    阅读次数:290
《Spring2之站立会议6》
《Spring2之站立会议6》昨天,向主界面中加入语音功能部分的代码;今天,查相关资料解决debug;遇到问题,一些问题是得到解决了,但是一些还未被解决。
分类:编程语言   时间:2015-06-03 00:40:16    阅读次数:173
[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:42:00    阅读次数:157
《Spring2之站立会议4》
《Spring2之站立会议4》昨天,对主界面进行了设计,编写了主界面的代码,把文本输入框,显示框,发送,关闭两个按钮的功能实现了;今天,接着对主界面进行代码的编写,实现了界面的美化,从图片库中调了一些图片对其进行优化;遇到...
分类:编程语言   时间:2015-06-03 00:42:28    阅读次数:143
[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:59    阅读次数:220
[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:42:17    阅读次数:136
opengles tutorial
https://developer.apple.com/library/ios/documentation/3DDrawing/Conceptual/OpenGLES_ProgrammingGuide/Introduction/Introduction.html
分类:其他好文   时间:2015-06-03 00:40:38    阅读次数:121
时间日期类型格式化
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:42:00    阅读次数:147
[POJ 1328] Radar Installation
Radar InstallationTime Limit:1000MSMemory Limit:10000KTotal Submissions:59563Accepted:13430DescriptionAssume the coasting is an infinite straight line...
分类:其他好文   时间:2015-06-03 00:40:00    阅读次数:158
2225条   上一页 1 ... 127 128 129 130 131 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!