我们知道平常在linux命令行的操作都可以放到文件里面,赋予可执行权限后,就可以将这文件变成一个shell脚本。但是如果我们跟有些程序交互时,shell脚本却帮不了我们太多。比如编辑一个文件和操作数据库。编辑一个文件一般用vi,进去后hjkl的aio的操作什么的,脚本怎么执行?mysql登陆输入mysql -u 用户 -p 密码后,就跟mysql进行一串交互,shell怎么执行?Here Docum...
分类:
系统相关 时间:
2015-04-27 16:58:17
阅读次数:
335
练习一下数学知识了。。
【题目链接】click here~~
【题目大意】Find the nonnegative integer X and integer Y to satisfy X*a + Y*b = 1. If no such answer print "sorry" instead.
求满足式子的x和y否则输出“sorry”
【解题思路】扩展欧几里得的基础了,
扩展欧几里德...
分类:
其他好文 时间:
2015-04-27 09:44:05
阅读次数:
104
How to change the SRP data is a very imperative for most bluetooth low energy use case. But in official Texas Instruments(TI) example code, there is no demonstration for this purpose. In here, I note...
分类:
其他好文 时间:
2015-04-27 00:29:29
阅读次数:
489
参考《Struts2+Hibernate+Spring》index.jsp 1 2 3 4 5 6 Insert title here 7 8 9 10 11 12 13 14 15 View CodeLoginUser....
分类:
其他好文 时间:
2015-04-27 00:05:42
阅读次数:
322
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the integers...
分类:
其他好文 时间:
2015-04-26 10:57:53
阅读次数:
170
Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.Have you thought about this?Here are s...
分类:
其他好文 时间:
2015-04-26 06:58:15
阅读次数:
108
index.jspInsert title herelogin.jspInsert title here管理员登陆 id: pw: mainFrame.jspInsert title here请选择你要的操作 添加雇员 显示雇员 查询雇员 退出系统struts-config.xml ...
分类:
编程语言 时间:
2015-04-25 19:45:51
阅读次数:
237
问题描述:Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321Have you thought about this?Here are some good question...
分类:
编程语言 时间:
2015-04-25 14:50:25
阅读次数:
111
【题目链接】:click here~~
【题目大意】:已知某几条道路已经修完,求全部道路要通路的最小花费
【解题思路】:基础的Kruskal算法了,按照边的权值从小到大排序一遍,符合条件加入到生成树中
代码:
/*
Author:HRW
kruskal+并查集
*/
#include
using namespace std;
const int max_v=105;
const int...
分类:
编程语言 时间:
2015-04-25 10:45:48
阅读次数:
208
DescriptionNeal is very curious about combinatorial problems, and now here comes a problem about words. Knowing that Ray has a photographic memory and...
分类:
其他好文 时间:
2015-04-25 10:34:42
阅读次数:
124