摘要: 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... 阅读全文
posted @ 2014-07-05 11:03 Awy 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Divide two integers without using multiplication, division and mod operator.思路:不能使用乘法除法以及取模运算来计算两个数相除。主要做法就是,将因子不断乘2(向左移位即可实现),同时结果从1不断移位加倍,等到除数大于被除数一... 阅读全文
posted @ 2014-07-05 10:03 Awy 阅读(157) 评论(0) 推荐(0) 编辑