A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message con...
分类:
其他好文 时间:
2014-08-13 12:38:26
阅读次数:
225
其实本题和:http://www.geeksforgeeks.org/count-possible-decodings-given-digit-sequence/是类似的。但是这道题需要考虑错误情况。 1 class Solution { 2 public: 3 int numDecodin...
分类:
其他好文 时间:
2014-08-11 20:33:52
阅读次数:
204
题目:A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message....
分类:
编程语言 时间:
2014-08-07 05:11:09
阅读次数:
247
其实列转行是比较简单的用sum和decode函数就可以了,但是我遇到的项目,不知道数据谁设计的居然字段里面还设计成long类型,此long类型与java中的不同,oracle中的long是指可变长二进制数据,最长2G,哎没办法只好转换了。以下是hsqldb的转换,用到了转换函数convert,可以将lon..
分类:
数据库 时间:
2014-08-05 22:54:40
阅读次数:
288
首先:中文->unicode字符串importchardetimportcodecs>>>a="我是一个中国人">>>a‘\xce\xd2\xca\xc7\xd2\xbb\xb8\xf6\xd6\xd0\xb9\xfa\xc8\xcb‘>>>chardet.detect(a){‘confidence‘:0.99,‘encoding‘:‘GB2312‘}>>>b=a.decode(‘GB2312‘)>..
分类:
编程语言 时间:
2014-08-05 11:34:40
阅读次数:
197
// 加密传入的数据是byte类型的,并非使用decode方法将原始数据转二进制,String类型的数据 使用 str.getBytes()即可
String str = "Hello!";
// 在这里使用的是encode方式,返回的是byte类型加密数据,可使用new String转为String类型
String strBase64 = new String(Base64.enc...
分类:
移动开发 时间:
2014-08-05 11:16:59
阅读次数:
228
Python2.7在Windows上一个bug,UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 33: ordinal not in range(128)...
分类:
编程语言 时间:
2014-08-04 14:33:57
阅读次数:
426
Decode WaysA message containing letters fromA-Zis being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded me...
分类:
其他好文 时间:
2014-08-03 15:12:15
阅读次数:
238
1、case语法: case when 条件1 then 返回值1 when 条件2 then 返回值2 ... else 返回值N end;示例:declare i integer; str varchar2(20);begin i := 3; str := case when i =...
分类:
数据库 时间:
2014-08-03 12:38:35
阅读次数:
300