码迷,mamicode.com
首页 >  
搜索关键字:highlight    ( 8728个结果
分享js中的 sort 另一种用法
// 看上去正常的结果: ['Google', 'Apple', 'Microsoft'].sort(); // ['Apple', 'Google', 'Microsoft']; // apple排在了最后: ['Google', 'apple', 'Microsoft'].sort(); // ... ...
分类:Web程序   时间:2017-03-06 22:06:54    阅读次数:169
malloc函数详解
一、原型:extern void *malloc(unsigned int num_bytes); 头文件:#include <malloc.h> 或 #include <alloc.h> (注意:alloc.h 与 malloc.h 的内容是完全一致的。) 功能:分配长度为num_bytes字节的 ...
分类:其他好文   时间:2017-03-06 22:03:49    阅读次数:152
POJ2352 Stars 树状数组
POJ2352 非常裸的树状数组的题。 注意数组下标不能从0开始 因为lowbit(0)==0 所以 所有横坐标统一加1 数组要开的够大 就酱 ...
分类:编程语言   时间:2017-03-06 21:14:42    阅读次数:171
Linux时间同步配置教程
生产环境关联主机间常要求时间一致,若有NTP时间同步服务器,可配置各主机与时间同步服务器同步时间。 1 服务端配置1.1 安装ntpd 1.2 配置ntp.conf文件 1.3 重启ntp服务 2 客户端配置 安装ntp客户端: 同步时间: 配置定时同步任务,以root执行crontab -e,在调 ...
分类:系统相关   时间:2017-03-06 10:47:46    阅读次数:202
a标签的link,visited,hover,active分别是什么
a:link {color: #FF0000} /*未访问状态*/a:visited {color: #00FF00}/*已访问状态*/a:hover {color: #FF00FF}/*鼠标移入到元素上面时的状态*/ a:active {color: #0000FF}/*鼠标按下状态状态*/ ...
分类:其他好文   时间:2017-03-05 23:22:50    阅读次数:269
分享一个js对象开发组件写法
var TextCount = (function(){ //私有方法,外面将访问不到 var _bind = function(that){ that.input.on('keyup',function(){ that.render(); }); } var _getNum = function(... ...
分类:Web程序   时间:2017-03-05 23:14:35    阅读次数:227
软件工程个人作业01
1.程序设计思想: 利用随机数产生两个数和运算符,加入定制数量,利用for循环实现输出,在每个+-*/里进行判断,不能出现假分数,不能出现负数,在加入结果计算,并且进行判断。 2.源程序代码: 3.运行结果截图: 4.课上未完成原因: 因为Eclipse运行java代码出现某些故障,所以导致未能按时 ...
分类:其他好文   时间:2017-03-05 18:12:36    阅读次数:168
[POJ] 食物链
食物链 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 68327 Accepted: 20199 Description 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。 现有N个动 ...
分类:其他好文   时间:2017-03-04 18:40:27    阅读次数:170
Dungeon Master
题目描述 You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with  ...
分类:其他好文   时间:2017-03-04 14:08:58    阅读次数:183
jQuery中ajax超时设置
var ajaxTimeoutTest = $.ajax({ url: '', timeout: 100, //超时时间设置,单位毫秒 type: 'get', data: {}, //请求所传参数,json格式 dataType: 'json', //返回的数据格式 success: functi... ...
分类:Web程序   时间:2017-03-03 23:00:01    阅读次数:184
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!