题目描述:
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /.
Each operand may be an integer or another expression.
Some examples:
...
分类:
其他好文 时间:
2014-11-25 10:53:22
阅读次数:
250
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 ...
分类:
其他好文 时间:
2014-11-24 09:50:10
阅读次数:
168
Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a multiple ofkthen left-o...
分类:
其他好文 时间:
2014-11-23 23:08:59
阅读次数:
332
Java中字符串的反转 首推方法: public?void?convertStr(String?str){?
????????//将String?对象转换为可改变的StringBuffer类对象?
????????//然后调用StringBuffer类的reverse()方法实现...
分类:
编程语言 时间:
2014-11-23 21:47:09
阅读次数:
200
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
#include
int reverse(int x)
{
long long tmp1=(long long)x;
long long tmp2=(long long)x;
...
分类:
其他好文 时间:
2014-11-23 18:59:33
阅读次数:
188
这题和Reverse Node in k-Group相关,主要是看如何翻转一个链表。这里是指定区间从第m个到第n个的翻转例如:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL./** * Definition for si...
分类:
其他好文 时间:
2014-11-23 17:22:49
阅读次数:
172
Evaluate Reverse Polish Notation题目描述:Evaluate the value of an arithmetic expression in Reverse Polish Notation.Valid operators are +, -,, /. Each oper...
分类:
其他好文 时间:
2014-11-23 14:25:38
阅读次数:
176
关于reverse的水题。基础的。
题目链接:http://erange.heetian.com/CTFrace.html
【1,dex2jar好用】
说是dex2jar好用,就猜到是apk了。改zip,解压出classes.de之后,用dex2jar,再用jd打开。
发现这么一段奇怪的字符数字,直接改成char表示,得到flag。
f l a g { w 4 n n...
分类:
其他好文 时间:
2014-11-22 18:55:33
阅读次数:
218
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then le...
分类:
其他好文 时间:
2014-11-22 07:04:50
阅读次数:
136
PowerDesigner 反转Java代码生成类图 首先当然是新建一个OOM。 单击Language—>Reverse Engineer Java… 不同的版本,菜单可能不一样,我的是12.5 到了这步当然是选择要反转的java 类了。不过试了蛮久,没找到...
分类:
编程语言 时间:
2014-11-21 20:37:08
阅读次数:
305