class Solution {
//3+4)*2=3*2+4*2
public int getDecimalValue(ListNode head) {
if(head==null){
return 0;
}
int sum=0;
while(head!=null){
sum=sum*2+head.val;
head=head.next;
}
return sum;
}
}
1290. 二进制链表转整数
于 2022-03-14 18:29:37 首次发布