/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
ListNode* reverseList(ListNode* he...
分类:
其他好文 时间:
2015-06-16 17:04:14
阅读次数:
88
题目:You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a sing...
分类:
其他好文 时间:
2015-06-16 16:27:28
阅读次数:
89
一、反向代理:Web服务器的“经纪人”1.1 反向代理初印象 反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器。 ....
分类:
Web程序 时间:
2015-06-16 10:43:21
阅读次数:
122
话说我们昨晚去看了侏罗纪公园,原来xd就是我最爱的巨幕,来美国这么多年了,怀念和小星星一路成长,一路看电影的经历,avatar是我们在美国一起看的第一部电影。老美看完好片子,还喜欢鼓个掌。这题one pass in place就是麻烦,要多做个string来判断单词要用到sb的insert,不过可以...
分类:
其他好文 时间:
2015-06-16 06:39:10
阅读次数:
123
display: flex;flex-direction属性值row:flex-direction的默认值,表示伸缩容器的主轴与当前书写模式的行内轴(文字布局的主要主向)。主轴起点与主轴终点方向分别等同于当前书写模式的始与结方向。row-reverse:表示的是除了主轴起点与主轴终点方向交换以外同r...
分类:
其他好文 时间:
2015-06-15 20:11:31
阅读次数:
182
问题描述:Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321输入一个整形数字,然后输出它的反转需要注意的是,int形变量的反转有可能是超过int的限制的,比如123456789...
分类:
其他好文 时间:
2015-06-15 18:27:14
阅读次数:
105
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2015-06-15 10:54:28
阅读次数:
77
很简单的stack,注意operation orderpublic class Solution { public int evalRPN(String[] tokens) { if(tokens ==null|| tokens.length==0) return 0; ...
分类:
其他好文 时间:
2015-06-15 06:53:55
阅读次数:
187
Description:Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321Code: 1 int reverse(int x) { 2 int p=0; 3...
分类:
其他好文 时间:
2015-06-14 21:15:45
阅读次数:
94
sort????排序 binarySearch????查找 fill????改变列表的所有 replaceAll????覆盖所有相同的 reverse??? 反转集合内容 swap??? 交换操作 shuffle??? 随机分配,就是打乱顺序 Comparator...
分类:
其他好文 时间:
2015-06-14 17:01:24
阅读次数:
105