码迷,mamicode.com
首页 > 其他好文 > 日排行
Word Search
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:其他好文   时间:2014-06-04 20:56:34    阅读次数:343
Minimum Path Sum
Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along its path.Note:Yo...
分类:其他好文   时间:2014-06-04 20:57:08    阅读次数:360
ECOS CMD更新
updateupdate --force-update-db
分类:其他好文   时间:2014-06-04 20:57:49    阅读次数:234
Jump Game II
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他好文   时间:2014-06-04 20:58:25    阅读次数:296
一个完整的使用成员函数指针的例子
Screen.h#ifndef SCREEN_H#define SCREEN_H#include class Screen {public: typedef std::string::size_type pos; // Action is a type that can point to...
分类:其他好文   时间:2014-06-04 20:59:09    阅读次数:350
动画渐变兼容各个浏览器
.destination1 .current{ display:block; animation:danru 2s linear infinite; -webkit-animation:danru 2s linear alternate ; -moz-animatio...
分类:其他好文   时间:2014-06-04 20:53:25    阅读次数:332
Valid Number
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:其他好文   时间:2014-06-04 20:54:02    阅读次数:326
Sort Colors
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:其他好文   时间:2014-06-04 20:49:33    阅读次数:276
performSelectorOnMainThread
[selfperformSelectorOnMainThread:@selector(fetchedData:)withObject:datawaitUntilDone:YES];会创建一个新的线程实行fetchedData函数,并传入参数data,并且会等待函数退出后再继续执行。- (void)f...
分类:其他好文   时间:2014-06-04 20:50:55    阅读次数:189
IE下常见兼容性问题总结
概述本小菜平时主要写后台程序,偶尔也会去写点前端页面,写html、css、js的时候,会同时开着ie6、ie7、ie8、ie9、chrome、firefox等浏览器进行页面测试,和大部分前端开发一样,经常被ie折磨,下面就总结一些常见的浏览器兼容性问题,放一起方便自己总结学习,我知道这类型文章,很多...
分类:其他好文   时间:2014-06-04 20:51:36    阅读次数:277
Pow(x, n)
Implement pow(x,n).classSolution{public:doublepow(doublex,intn){if(n==1)returnx;if(n==-1)return1/x;if(n==0)return1;doubleresult=1;doubletmp=pow(x,n/2)...
分类:其他好文   时间:2014-06-04 20:48:56    阅读次数:288
三层架构浅析
表示层(UI):显示的界面,用户浏览和输入。业务逻辑层(BLL):对用户输入的数据进行处理;对从数据访问层获取的数据进行处理。数据访问层(DLL):从数据库或其他地方获取原始数据。Model层(实体类):让对象和表形成映射关系。Model层属于辅助作用。分层的好处:实现“高内聚,低耦合”。采用“分而...
分类:其他好文   时间:2014-06-04 20:46:59    阅读次数:266
Rotate List
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL./***D...
分类:其他好文   时间:2014-06-04 20:44:57    阅读次数:227
Merge Intervals
Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18]./***Definition...
分类:其他好文   时间:2014-06-04 20:45:31    阅读次数:201
@selector
@selector 是什么?1一种类型 SEL2代表你要发送的消息(方法), 跟字符串有点像, 也可以互转.:NSSelectorFromString() / NSSelectorFromString()3可以理解为类似函数指针的东西--是能让Objective-C动态调用方法的玩意.--是 ob....
分类:其他好文   时间:2014-06-04 20:46:16    阅读次数:217
Jump Game
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他好文   时间:2014-06-04 20:44:19    阅读次数:216
Process manufacturing和Discrete manufacturing的区别
Process manufacturing(Process industry)加工制造,或者加工工业。其一个重要特征是,原材料被加工成成品后,我们再也无法将它恢复成原料,比如,苹果罐头,我们再没法把它恢复成苹果。Discrete manufacturing组装制造,主要是一些把很多零配件组合起来,让...
分类:其他好文   时间:2014-06-04 20:26:37    阅读次数:374
CAS连接微软活动目录的配置方法
原文地址:http://blog.csdn.net/baozhengw/article/details/3857669在微软活动目录中建立一个用户节点,帐号为wangzhenyu,cn为zhenyu wang,并设置登陆口令,这时候在cas中用wangzhenyu的帐号登陆失败,解决办法是:安装ap...
分类:其他好文   时间:2014-06-04 20:24:28    阅读次数:228
Rotate Image
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?classSolution{publi...
分类:其他好文   时间:2014-06-04 20:25:09    阅读次数:227
性能测试相关脚本
1,restime统计响应时间#!/bin/bash#统计日志响应时间用if [ $# -lt 1 ]; then echo "at least have one param; " echo "ex: restime a.log b.log *.log" exit 1fi. lgq...
分类:其他好文   时间:2014-06-04 20:23:43    阅读次数:291
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!