티스토리 뷰
Algorithm/LeetCode
[LeetCode - Daily Challenge] 1290. Convert Binary Number in a Linked List to Integer
Jaime.Lee 2021. 12. 8. 10:30Problem
Given head which is a reference node to a singly-linked list. The value of each node in the linked list is either 0 or 1. The linked list holds the binary representation of a number.
Return the decimal value of the number in the linked list.
Example 1:
Input: head = [1,0,1]
Output: 5
Explanation: (101) in base 2 = (5) in base 10
Example 2:
Input: head = [0]
Output: 0
Example 3:
Input: head = [1]
Output: 1
Example 4:
Input: head = [1,0,0,1,0,0,1,1,1,0,0,0,0,0,0]
Output: 18880
Example 5:
Input: head = [0,0]
Output: 0
Constraints:
- The Linked List is not empty.
- Number of nodes will not exceed 30.
- Each node's value is either 0 or 1.
Solution
0과 1로 구성된 연결리스트가 주어지고 이 연결리스트가 이진수를 나타낼 때 십진수로 변환하는 문제입니다.
먼저 가장 간단한 방법은 연결리스트의 값들을 그대로 문자열로 만들어서 이진수를 십진수로 변환하는 방법입니다.
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public int getDecimalValue(ListNode head) {
StringBuilder stringBuilder = new StringBuilder();
while (head != null) {
stringBuilder.append(head.val);
head = head.next;
}
return Integer.valueOf(stringBuilder.toString(), 2);
}
}
당연히 쉽게 통과과되는데 성능을 개선시킬 방법이 있을 거 같아서 찾아보았습니다.
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public int getDecimalValue(ListNode head) {
int result = 0;
while (head != null) {
result = result * 2 + head.val;
head = head.next;
}
return result;
}
}
Test
package io.lcalmsky.leetcode.convert_binary_number_in_a_linked_list_to_integer;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import io.lcalmsky.leetcode.ListNode;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(ListNode.of(1, 0, 1), 5),
() -> test(ListNode.of(0), 0),
() -> test(ListNode.of(1), 1),
() -> test(ListNode.of(1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0), 18880),
() -> test(ListNode.of(0, 0), 0)
);
}
private void test(ListNode given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.getDecimalValue(given);
// then
assertEquals(expected, actual);
}
}
ListNode 클래스 보기
package io.lcalmsky.leetcode;
import java.util.Objects;
public class ListNode {
public int val;
public ListNode next;
public ListNode(int val) {
this.val = val;
}
public static ListNode of(int... integers) {
if (integers == null || integers.length == 0) throw new IllegalArgumentException();
ListNode head = new ListNode(0);
ListNode last = head;
ListNode p;
for (int integer : integers) {
p = new ListNode(integer);
last.next = p;
last = last.next;
}
return head.next;
}
@Override
public String toString() {
return "ListNode{" +
"val=" + val +
", next=" + next +
'}';
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof ListNode)) return false;
ListNode listNode = (ListNode) o;
return val == listNode.val &&
Objects.equals(next, listNode.next);
}
@Override
public int hashCode() {
return Objects.hash(val, next);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode - Daily Challenge] 878. Nth Magical Number (0) | 2021.12.11 |
---|---|
[LeetCode - Daily Challenge] 1306. Jump Game III (0) | 2021.12.09 |
[LeetCode - Daily Challenge] 1217. Minimum Cost to Move Chips to The Same Position (0) | 2021.12.07 |
[LeetCode - Daily Challenge] 337. House Robber III (0) | 2021.12.06 |
[LeetCode - Daily Challenge] 198. House Robber (0) | 2021.12.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- QueryDSL
- 클린 아키텍처
- 헥사고날 아키텍처
- @ManyToOne
- 스프링부트
- proto3
- leetcode
- spring boot application
- JPA
- JSON
- Spring Data JPA
- 스프링 데이터 jpa
- 스프링 부트
- r
- Spring Boot Tutorial
- Linux
- 스프링 부트 애플리케이션
- gRPC
- Spring Boot JPA
- spring boot jwt
- spring boot app
- 함께 자라기
- 스프링 부트 회원 가입
- intellij
- 스프링 부트 튜토리얼
- Java
- Spring Boot
- 알고리즘
- 함께 자라기 후기
- Jackson
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함