习惯了vi模式,在bash里配置input.rc可以使平时命令行操作都使用vi习惯,翻页和跳动光标都很方便但是当运行一些交互式程序时,比如redis-cli,lua等,它们却不按input.rc的配置来读取输出,经常快捷键操作出现乱码这是因为它们自己没有使用readline库来读取命令行输入解决办法...
分类:
其他好文 时间:
2014-05-12 11:05:01
阅读次数:
264
原文:一些有用的javascript实例分析(三) 1 10 输入两个数字,比较大小 2
window.onload = function () 3 { 4 var aInput =
document.getElementsByTagName("input"); 5 var aSpan = docu...
分类:
编程语言 时间:
2014-05-12 08:00:23
阅读次数:
732
#include#includetypedef struct node { int data;
struct node *lchild,*rchild;};node * create()//先序建立二叉树,根左右{ int x=0; node *t;
printf(" input data:"); ...
分类:
其他好文 时间:
2014-05-11 01:19:08
阅读次数:
311
1、数组的下标法:直观且容易理解如:int a[5],i;printf("Input five
numbers:");for(i=0;i<5;i++){scanf("%d",&a[i]);}for(i=0;i<5;i++){
printf("%4d",a[i]);}2、数组名首地址法(指针法):指针...
分类:
其他好文 时间:
2014-05-11 00:35:46
阅读次数:
351
Given an integer, convert it to a roman
numeral.Input is guaranteed to be within the range from 1 to 3999.public class
Solution { public String int...
分类:
其他好文 时间:
2014-05-10 20:31:10
阅读次数:
335
每当Struts2爆出这样的异常,会很郁闷,原因太多了,只能一一的检查。有的说input页面没指定,有的说namespace有问题,有的说你对应的result有问题,有的说validate不通过,等等。但是在这里,我却不是,我无论如何都找不到原因,差不多花了两个钟,我无意中使用Struts2异常处..
分类:
其他好文 时间:
2014-05-10 09:04:19
阅读次数:
448
Substring时间限制:1000 ms | 内存限制:65535 KB难度:1描述You
are given a string input. You are to find the longest substring of input such
that the reversal of the ...
分类:
其他好文 时间:
2014-05-10 06:20:56
阅读次数:
257
主程序代码 - 1 #include 2 #include 3 main() 4 { 5
long t1; 6 int i, n, t, t3; 7 char a[100]; 8 printf("please input a number
string:\n");...
分类:
其他好文 时间:
2014-05-10 03:10:56
阅读次数:
269
今天遇到一个问题调试了很久,关于css的优先级问题.像常规的id选择器(#test) >
类选择器class(.test) > 标签选择器input (中间还有一些类型不详举了),相比大家都很清楚这次遇到就是input[type=text]
{background:red} 和 类选择器 .aa{b...
分类:
Web程序 时间:
2014-05-10 03:07:59
阅读次数:
387