billryan / algorithm-exercise

Data Structure and Algorithm notes. 数据结构与算法/leetcode/lintcode题解/
https://algorithm.yuanbin.me
3.44k stars 892 forks source link

Update plus_one.md #66

Closed wenalan closed 8 years ago

wenalan commented 8 years ago

added c++ code

billryan commented 8 years ago

编码风格不太好,问题如下:

  1. 变量名不建议随意简写,比如carry -> c, 起有意义的变量名。
  2. if (c) 建议改为 if (c == 1), 清晰明了,只有当c为bool 类型时才用if (c), 以免引起误解。

还有一个就是你的 if, else 条件语句的用法,之前的几个 PR 这个问题很严重,这个 PR 倒没出现这个问题。在有else时不能省掉if后面的大括号。

关于条件语句的编码风格建议参考 http://zh-google-styleguide.readthedocs.org/en/latest/google-cpp-styleguide/formatting/#id7

billryan commented 8 years ago

Closed e556097