#include
using namespace std;
#define STACK_INIT_SIZE 10
#define STACKINCREMENT 10
#define ElemType int
typedef struct
{
ElemType *base;
int top;
size_t capacity;
}SqStack;
bool IsFull(SqStack *...
分类:
编程语言 时间:
2015-06-28 01:17:11
阅读次数:
205
Description:Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corn...
分类:
其他好文 时间:
2015-06-27 21:18:52
阅读次数:
118
这里简单介绍一下state.sls与state.highstate与区别,这也是自己在使用过程中的一点心得吧。环境介绍:salt2015.5.0(Lithium)top.slsstate.highstate这个是全局的所有的环境的所有的状态生效;state.sls用来指定特定sls进行处理。当使用salt‘*‘state.highstate没有任何问题可是..
分类:
其他好文 时间:
2015-06-27 20:03:28
阅读次数:
696
Kaggle Bike Sharing Demand Prediction – How I got in top 5 percentile of participants?IntroductionThere are three types of peoplewhotake part in aKagg...
分类:
其他好文 时间:
2015-06-27 19:49:27
阅读次数:
389
【题目链接】:click here~~
【题目大意】
一组题目的数目(n
【解题思路】:
DFS+回溯。
先发一发比较拙的代码:
#include
using namespace std;
const int N=1e5+10;
int num[N],mum[N];
int n,m,q,t,l,r;
int top,ans,cnt;
void dfs(int...
分类:
其他好文 时间:
2015-06-27 16:44:44
阅读次数:
115
使用过代码布局的人可能会有这样的感觉,给控件设置frame的时候比较繁琐。最 近在Github上看到有一个UIView的一个分类UIView-Positioning,这个分类提供了一些属性,比如left、right、 top、bottom、centerX、centerY等,在布局的时候使用这些属.....
分类:
移动开发 时间:
2015-06-27 16:17:45
阅读次数:
112
// 头文件//module my_uart_top( CLK,rst_n,rs232_rx,rd_fifo_ena,rd_fifo_data, rs232_tx,wr_fifo_req,rd_fifo_req,wr_fifo_data,clk_bps_tx,clk_h )...
分类:
其他好文 时间:
2015-06-27 16:02:40
阅读次数:
123
函数: public abstract FragmentTransaction add(int containerViewId, Fragment fragment);getFragmentManager().beginTransaction().add(R.id.frgmt_top, new T....
分类:
其他好文 时间:
2015-06-27 15:55:06
阅读次数:
242
#第一行23:07:45---->当前系统时间619days,1:01---->当前系统运行了619天1小时01分2users---->当前系统有两个用户Loadaverage:0.00,0.01,0.00后面三个数分别是1分钟,5分钟,15分钟的负载情况。#第二行进程状态Tasks---->任务329total---->进程数(共有329个进..
分类:
其他好文 时间:
2015-06-27 06:28:47
阅读次数:
227
对于一个 Linux 系统管理员来说确保自己管理的系统处于一个良好的状态是其首要责任。
Linux 系统管理员可以找到有很多工具来帮助自己监控和显示系统中的进程,例如 top 和 htop
今天介绍一款工具collectl,使用比较方便;
介绍:
collectl是一款非常优秀并且有着丰富的命令行功能的实用程序,你可以用它来采集描述当前...
分类:
其他好文 时间:
2015-06-26 13:35:21
阅读次数:
213