题目:在字符串中找出第一个只出现一次的字符。如输入"abaccdeff",这输出'b'// 第一个只出现一次的字符#include char first_not_repeat_char(char *s){ int count[256]={0}; char *pkey; if( s=...
分类:
其他好文 时间:
2014-07-24 09:59:53
阅读次数:
200
question:I am using SimpleTrigger to schedule a job which is supposed to run indefinitely (repeat count -1).And i am using JDBC store to persist the j...
分类:
其他好文 时间:
2014-07-22 00:27:38
阅读次数:
420
ios7引入了nsurlsession,通过它可以支持后台相关的网络操作的新特性。让我们看看它有哪些好处:
1.后台上传下载;
2.不需要通过nsoperation,我们用nsurlsession的api就可以做到网络操作的暂停和恢复。
3.作为可配置的容器:例如你可以设置http头的一些属性并且保存在session里,你就不用重复去做配置了;don't repeat yourself~
...
分类:
移动开发 时间:
2014-07-21 23:27:48
阅读次数:
268
在drawable目录下创建一个repeat_bg.xml: <?xml?version="1.0"?encoding="utf-8"?>
<bitmap?xmlns:android="http://schemas.android.com/apk/res/android"
????android:src="@drawable/asdfg"
????and...
分类:
移动开发 时间:
2014-07-21 10:19:36
阅读次数:
219
最近工作时研究了一下css3动画和js动画,主要是工作中为了增强页面的趣味性,大家都有意无意的添加了很多动画效果,当然大部分都是css3动画效果,可以gpu加速,这会减少移动端的性能需求。
今天主要说的是蜂窝效果,具体效果大家等下可以运行源码,这里就不放gif图了。
css3的原理很简单,就是通过更改background-size,由于css3中的background中可以设置repeat属性...
分类:
Web程序 时间:
2014-07-20 15:16:51
阅读次数:
317
在mysql数据库中操作同样有循环语句操作,标准的循环方式: while 循环 、 loop 循环和repeat循环。还有一种非标准的循环: goto。 鉴于goto 语句的跳跃性会造成使用的的思维混乱,所以不建议使用。这几个循环语句的格式如下:WHILE……DO……END WHILEREPEAT…...
分类:
数据库 时间:
2014-07-18 21:20:19
阅读次数:
194
1. 复制N个字符 String.prototype.repeat = function(num){ return (new Array(++num)).join(this);}var a = 'A';a.repeat(5); //'AAAAA'2. 替代if…else…var result;res...
分类:
Web程序 时间:
2014-07-16 21:33:45
阅读次数:
256
background:url(背景图片路径) no-repeat;/*不重复默认在左上方*/background:url(背景图片路径) no-repeat center;/*不重复背景图片中间显示*/background:url(背景图片路径) no-repeat bottom center...
分类:
Web程序 时间:
2014-07-16 20:37:51
阅读次数:
233
修改Aqua的ligerui-grid.css.l-panel-topbar 样式修改为:.l-panel-topbar{padding: 0;background: #CEDFEF url('../images/panel/panel-toolbar.gif') repeat-x;height: ...
分类:
其他好文 时间:
2014-07-16 16:02:14
阅读次数:
295
10、循环结构循环结构awk的while循环结构,它等同于相应的C语言while
循环。awk还有"do...while"循环,它在代码块结尾处对条件求值,而不象标准while
循环那样在开始处求值。它类似于其它语言中的"repeat...until"循环。示例:do...while示例{count=1do{print"Igetprintedatlea..
分类:
其他好文 时间:
2014-07-15 12:03:55
阅读次数:
332