图片说明

class Solution {
    public int getDecimalValue(ListNode head) {
        int res = 0 ;
        while(head!=null){
            res = res*2 + head.val;
            head = head.next;
        }
        return res;
    }
}
  • 反思:虽然说这道题很简单,但有个地方需要注意的是位运算 还是 * 2,*k 什么进制都可以转换,而位运算不适合其他的进制运算