【leetcode】1290.二进制链表转整数

  • 给你一个单链表的引用结点 head。链表中每个结点的值不是 0 就是 1。已知此链表是一个整数数字的二进制表示形式。

请你返回该链表所表示数字的 十进制值 。

 

示例 1:

输入:head = [1,0,1]
输出:5
解释:二进制数 (101) 转化为十进制数 (5)
示例 2:

输入:head = [0]
输出:0
示例 3:

输入:head = [1]
输出:1
示例 4:

输入:head = [1,0,0,1,0,0,1,1,1,0,0,0,0,0,0]
输出:18880
示例 5:

输入:head = [0,0]
输出:0
 

提示:

链表不为空。
链表的结点总数不超过 30。
每个结点的值不是 0 就是 1。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/convert-binary-number-in-a-linked-list-to-integer
代码如下:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */

//累乘函数
int fuc(int time){
    int res=1;
    for(int i=0;i<time;i++){
        res*=2;
    }
    return res;
}
//反转链表
struct ListNode* reverseList(struct ListNode* head){
    struct ListNode* oldhead=head;
    struct ListNode* temp=NULL;
    struct ListNode* newhead=NULL;
    while(oldhead!=NULL){
        newhead=(struct ListNode*)malloc(sizeof(struct ListNode));
        newhead->val=oldhead->val;
        newhead->next=temp;
        temp=newhead;
        oldhead=oldhead->next;
    }
    return newhead;
}
int getDecimalValue(struct ListNode* head){
    struct ListNode* newhead=reverseList(head);
    int sum=0,count=0;
    while(newhead!=NULL){
        if(newhead->val==1){

            sum+=fuc(count);
        }
        count++;
        newhead=newhead->next;
     
    }
    return sum;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值