码迷,mamicode.com
首页 > 其他好文
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
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
三层架构浅析
表示层(UI):显示的界面,用户浏览和输入。业务逻辑层(BLL):对用户输入的数据进行处理;对从数据访问层获取的数据进行处理。数据访问层(DLL):从数据库或其他地方获取原始数据。Model层(实体类):让对象和表形成映射关系。Model层属于辅助作用。分层的好处:实现“高内聚,低耦合”。采用“分而...
分类:其他好文   时间:2014-06-04 20:46:59    阅读次数:266
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
IE下常见兼容性问题总结
概述本小菜平时主要写后台程序,偶尔也会去写点前端页面,写html、css、js的时候,会同时开着ie6、ie7、ie8、ie9、chrome、firefox等浏览器进行页面测试,和大部分前端开发一样,经常被ie折磨,下面就总结一些常见的浏览器兼容性问题,放一起方便自己总结学习,我知道这类型文章,很多...
分类:其他好文   时间:2014-06-04 20:51:36    阅读次数:277
performSelectorOnMainThread
[selfperformSelectorOnMainThread:@selector(fetchedData:)withObject:datawaitUntilDone:YES];会创建一个新的线程实行fetchedData函数,并传入参数data,并且会等待函数退出后再继续执行。- (void)f...
分类:其他好文   时间:2014-06-04 20:50:55    阅读次数:189
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
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
动画渐变兼容各个浏览器
.destination1 .current{ display:block; animation:danru 2s linear infinite; -webkit-animation:danru 2s linear alternate ; -moz-animatio...
分类:其他好文   时间:2014-06-04 20:53:25    阅读次数:332
一个完整的使用成员函数指针的例子
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
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
ECOS CMD更新
updateupdate --force-update-db
分类:其他好文   时间:2014-06-04 20:57:49    阅读次数:234
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
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
@selector和SEL
遇到selector发现不是很明白,网上搜到的零零星星的介绍也不成体系,索性自己翻译一下,加深一下印象。原文来自官方API文档下的Selectors。Selectors在OC中,selector有两层含义。1、当selector在源代码中被用来指向一个对象的时候,selector可以仅仅指这个方法的...
分类:其他好文   时间:2014-06-04 20:59:49    阅读次数:326
poj 1002:487-3279(水题,提高题 / hash)
487-3279Time Limit:2000MSMemory Limit:65536KTotal Submissions:236746Accepted:41288DescriptionBusinesses like to have memorable telephone numbers. One ...
分类:其他好文   时间:2014-06-04 21:08:17    阅读次数:349
div嵌套div 背景图片 不显示的问题
这几天 在做一个小Demo的时候碰到了如上的问题,一个DIV嵌套多个DIV时,父容器DIV不显示背景图片。同时结合之前碰到类似的问题,我归纳了如下几个解决方法:1.就是常见的 子div 背景把父div的背景给盖住了,例子:该例子就是 我有一个父div 和它里面嵌套的一个子div,两个div的宽度和高...
分类:其他好文   时间:2014-06-04 21:10:12    阅读次数:401
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!