码迷,mamicode.com
首页 >  
搜索关键字:top    ( 21129个结果
[LeetCode] Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you cli...
分类:其他好文   时间:2014-07-07 21:03:15    阅读次数:157
Linux常用命令_(进程管理)
进程管理:ps、top、kill指令名称:ps语法:ps [选项]-a显示所有终端机下执行的程序。-e显示所有程序。-f显示UID,PPIP,C与STIME栏位。功能描述:查看系统中运行的进程。范例:# ps -aef# ps -A 查看所有进程,和ps -e功能相同指令名称:top语法:top [...
分类:系统相关   时间:2014-07-07 20:22:24    阅读次数:259
Problem Triangle
Problem Description:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For ex...
分类:其他好文   时间:2014-07-07 15:29:11    阅读次数:280
oracle 实时查询最耗CPU资源的SQL语句
1. 先通过top命令查看产用资源较多的spid号2.查询当前耗时的会话ID,用户名,sqlID等: select sid,serial#,machine,username,program,sql_hash_value,sql_id, to_char(logon_time,'yyyy/mm/dd ....
分类:数据库   时间:2014-07-01 22:42:08    阅读次数:366
实现CSS制作网页时绝对居中问题
利用负边距方法,绝对定位使容器相对屏幕绝对居中,此时的被嵌套容器只能为绝对大小。(标准)根据margin负值和top left的比例控制,实现随屏幕绝对居中,容器大小改变需要重新调整margin top left的参数:
分类:Web程序   时间:2014-07-01 22:17:23    阅读次数:280
Linux性能优化和监控系列(一)——top工具
解释服务器发生了什么——top工具在检查服务器的详细工作性能状态前,系统管理员需要对当前服务器状态有总体的了解. top是检查服务器总体状态的强有力工具, 通过top可以获取CPU, Memory, Process运行信息, 如下是运行top命令后的数据显示:top - 20:08:09 up 10...
分类:系统相关   时间:2014-07-01 20:47:11    阅读次数:272
a href=#与 a href=javascript:void(0) 的差别
a href="#"> 点击链接后,页面会向上滚到页首,# 默认锚点为 #TOP 点击链接后,页面不动,仅仅打开链接 作用同上,不同浏览器会有差异。点击链接后,不想使页面滚到页首,就用href="javascript:void(0)",不要用href="#",return false也有相似作用具体...
分类:编程语言   时间:2014-07-01 13:41:35    阅读次数:272
Android界面坐标图示和Rect(矩形)简介
Android界面的坐标是以左上角为起始点,平行的为X轴,垂直的为Y轴,数值都是递增的。如下图所示: Android的Rect类是形成一个矩形的区域,区域在Android整个界面中的位置由left,top,right,bottom数值来控制,下面的图介绍了这四个值的意思。...
分类:移动开发   时间:2014-07-01 07:00:24    阅读次数:418
Useful Gnome-shell extensions
In Gnome 3, gnome-shell is used for displaying the top bar. The widgets can be installed online from http://extensions.gnome.org. After installation, ...
分类:其他好文   时间:2014-06-30 13:33:22    阅读次数:172
Minimum Path Sum
题目 Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move either down...
分类:其他好文   时间:2014-06-30 11:10:34    阅读次数:211
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!