Ubuntu监控load脚本:#viload.sh按a或i进入编辑模式#!/bin/bashName=`hostname`IP=`/sbin/ifconfigeth0|grep"inetaddr"|awk-F[:""]+‘{print$4}‘`Date=`date+%m%d%y`Load=`/usr/bin/uptime|grepload|awk-F[:""]+‘{print$14}‘|tr-d","`Load2=150if[$(echo"$Load>$Load2"|bc)-e..
分类:
其他好文 时间:
2014-09-17 18:51:43
阅读次数:
224
一、格式:<table><caption>表格的标题</caption> <tr> <th>标题栏</th> <th>标题栏</th> <th>标题栏</th> </tr> <tr> <td>第一列</td> <td>第二列</td> <td>第三列&l..
分类:
Web程序 时间:
2014-09-17 15:26:23
阅读次数:
225
题目地址:HDU 1575
矩阵快速幂裸题。
初学矩阵快速幂。以前学过快速幂,今天一看矩阵快速幂,原来其原理是一样的,这就好办多了。都是利用二分的思想不断的乘。只不过把数字变成了矩阵而已。
代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#incl...
分类:
其他好文 时间:
2014-09-17 12:07:12
阅读次数:
198
<!DOCTYPE?html?PUBLIC?"-//W3C//DTD?XHTML?1.0?Transitional//EN"?"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html?xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JS生成验证...
分类:
Web程序 时间:
2014-09-16 17:34:01
阅读次数:
209
Given inorder and postorder traversal of a tree, construct the binary tree.与Construct Binary Tree from Inorder and Preorder Traversal问题非常类似,唯一区别在于这一次确...
分类:
其他好文 时间:
2014-09-16 12:09:50
阅读次数:
212
Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.难度:95,参考了网上的思路。...
分类:
其他好文 时间:
2014-09-16 12:09:00
阅读次数:
174
代码: ie6/7下给table的行tr 添加position:relative;的奇特bug,求大神告知 12 34 ie8见图: ie6、7见图: 对比之下在按F12后查看对比图,ie6/7焦点重合了,不知道是不是浏览器问题求大神指教!!!...
分类:
其他好文 时间:
2014-09-15 19:20:59
阅读次数:
186
W3C标准中对CSS3的transition这是样描述的:“CSS的transition允许CSS的属性值在一定的时间区间内平滑地过渡。这种效果可以在鼠标单击、获得焦点、被点击或对元素任何改变中触发,并圆滑地以动画效果改变CSS的属性值。”下面我们从最简单的语法和属性值开始一步一步来学习tr...
分类:
Web程序 时间:
2014-09-15 19:18:39
阅读次数:
283
struct TreeNode { struct TreeNode* left; struct TreeNode* right; char elem; }; TreeNode* BinaryTreeFromOrderings(char* inorder, ...
分类:
其他好文 时间:
2014-09-15 12:50:08
阅读次数:
167