LeetCode Algorithm 1290. 二进制链表转整数

Posted _Alex_007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 1290. 二进制链表转整数相关的知识,希望对你有一定的参考价值。

1290. 二进制链表转整数

Ideas

偷了个懒,首先用string类型的str把链表的所有元素都串起来,然后直接用stoi转成int类型,直接AC。

Code

C++

#include <string>

class Solution 
public:
    int getDecimalValue(ListNode* head) 
		string str = "";
		while (head) 
			str += to_string(head->val);
			head = head->next;
		
		cout << str << endl;
		return stoi(str, nullptr, 2);
    
;

以上是关于LeetCode Algorithm 1290. 二进制链表转整数的主要内容,如果未能解决你的问题,请参考以下文章

[Algorithm] 1290. Convert Binary Number in a Linked List to Integer

算法leetcode1290. 二进制链表转整数(多语言实现)

算法leetcode1290. 二进制链表转整数(多语言实现)

LeetCode1290. 二进制链表转整数

LeetCode --- 1290. Convert Binary Number in a Linked List to Integer 解题报告

1290. 二进制链表转整数