1290. Convert Binary Number in a Linked List to Integer

2022/2/15 6:11:36

本文主要是介绍1290. Convert Binary Number in a Linked List to Integer,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

This is a super easy problem. Time Compexity O(n), Space Complexity O(n)

    int res = 0;
    public int getDecimalValue(ListNode head) {
        if(head==null)
            return res;
        res = res*2+head.val;
        return getDecimalValue(head.next);
    }

 

    int res = 0;
    public int getDecimalValue(ListNode head) {
        while(head!=null){
            int val= head.val;
            res= res*2+val;
            head=head.next;
        }
        return res;
    }

 



这篇关于1290. Convert Binary Number in a Linked List to Integer的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程