来源:http://ss64.com/osx/An A-Z Index of theApple OS Xcommand line alias Create an alias ? alloc List used and free memory apropos Search t...
分类:
移动开发 时间:
2014-07-01 17:46:48
阅读次数:
384
.put { -webkit-transition:border linear .2s,-webkit-box-shadow linear .2s; outline:none; border-color:rgba(241,39,242,.6); -webkit-box-shadow:0 0 8px ...
分类:
其他好文 时间:
2014-07-01 17:46:03
阅读次数:
228
------------------------------------------------------------------------------------gvim的四种模式:普通模式,插入模式,替换模式,命令模式。普通模式》插入模式 i/I 在光标前面/行首插入 a/A 在光标后面/行...
分类:
其他好文 时间:
2014-07-01 17:17:31
阅读次数:
306
1 /* create an arrow that points up */ 2 div.arrow-up { 3 width:0px; 4 height:0px; 5 border-left:5px solid transparent; /* left arrow slant */...
分类:
Web程序 时间:
2014-07-01 16:53:30
阅读次数:
183
多重背包,本题不需要二分优化。相对简单点。因为重复数十分小,小于10;
而增加一个限制每种材料的高度做法,如果使用逆向填表,那么只需要从这个高度往小递归填表就可以了。
还有就是注意要排序,以限制高度为标准从小到大排序,否则答案错误的。
#include
#include
#include
using std::sort;
const int MAX_K = 401;
const in...
分类:
其他好文 时间:
2014-07-01 16:08:42
阅读次数:
213
$drug=array(
'ACEI'=>array(array('ch_name'=>'卡托普利','en_name'=>'captopril'),array('ch_name'=>'依那普利','en_name'=>'enalapril'),
array('ch_name'=>'赖诺普利','en_name'=>'lisinopril')),
'ARB...
分类:
Web程序 时间:
2014-07-01 15:56:29
阅读次数:
203
编译服务程序报的各种错:
1. 环境变量配置好后运行tmboot –y启动管理进程和服务进程
2. 报类似这样的错:buildserv:error while loading shared libraries:libtux.so:can't openshared object file。解决如下:
exportLD_LIBRARY_PATH=$ LD_LIBRARY_PATH:/home...
分类:
其他好文 时间:
2014-07-01 15:54:32
阅读次数:
1571
题目链接:点击打开链接
右端点升序,取右端点
暴力删边
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define inf 10000000
#define ll int
#define N 2105
#define L(x) (x<<...
分类:
其他好文 时间:
2014-07-01 15:05:24
阅读次数:
214
前两天写RTC中断 使用串口输出
发现程序会出现while(!(rUTRSTAT0 & 0x2));出不来的情况,但是中断是正常运作的
解决方法:
main函数增加:
U32 mpll_val = 0,consoleNum;
Port_Init(); //定义在2440lib.c...
分类:
其他好文 时间:
2014-07-01 14:36:56
阅读次数:
459
下面是中兴通讯2012校招笔试题的一道问答题:1. static全局变量与普通的全局变量有什么区别 ?全局变量(外部变量)的说明之前再冠以static 就构成了静态的全局变量。全局变量本身就是静态存储方式, 静态全局变量当然也是静态存储方式。 这两者在存储方式上并无不同。这两者的区别在于非静态全局变...
分类:
其他好文 时间:
2014-07-01 14:19:23
阅读次数:
253