-
LeetCode - 1480. Running Sum of 1d Array [Kotlin]Algorithms/- LeetCode 2022. 8. 2. 10:30
문제 링크 : 1480. Running Sum of 1d Array Running Sum of 1d Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정답 ( Solution ) class Solution { fun runningSum(nums: IntArray): IntArray { for(i in 1 until nums.size){ nums[i] += nums[i-1] } return nums } }
-
CDN(Content Delivery Network)이란 무엇인가?IT Info 2022. 6. 13. 09:59
CDN(Content Delivery Network)이란? 전 세계 사용자에게 웹 콘텐츠를 효율적으로 제공할 수 있는 서버의 분산 네트워크이다. CDN은 최종 사용자와 가까운 POP(Point-Of-Presence : 네트워크 상호 간 접근점) 위치의 서버에 캐시 된 콘텐츠를 저장하여 대기 시간을 최소화한다. 콘텐츠는 웹 요소 (텍스트, 그래픽, 스크립트) 다운로드 가능한 요소 (미디어 파일, 소프트웨어, 문서) 애플리케이션 (전자상거래, 포털) 실시간 미디어 주문형 스트리밍 소셜 네트워크 등이 있다. 동작 방식 사용자가 도메인 이름이 있는 URL을 사용하여 파일을 요청 DNS는 가장 성능이 좋은 POP 위치로 요청을 라우팅(일반적으로 가장 가까운 POP) POP 서버의 캐시에 파일이 없으면 POP는 원..
-
자바 JVM(Java Virtual Machine) 메모리 구조Programming Language/- Java 2022. 6. 1. 20:12
JVM(Java Virtual Machine) 이란? JVM은 컴파일된 자바의 바이트코드(. class)들을 OS에서 실행하기 위한 표준 스펙이며 다양한 구현체가 존재한다. Java 언어 자체는 JVM에서 동작하기 때문에 OS 독립적이지만 JVM은 각 OS에 종속적(윈도우용 JVM, 리눅스용 JVM 등)이다. JVM은 크게 아래와 같이 분류할 수 있다. Class Loader JVM Memory(Run-time Data Areas) Execution Engine 오늘은 JVM의 메모리에 대해서 알아본다. JVM Memory (Run-time Data Areas) JVM의 메모리는 위 그림에서와 같이 Method Area Heap JVM Language Stacks PC Registers Native Me..
-
[자바] ThreadLocal 에 대하여Programming Language/- Java 2022. 6. 1. 19:43
TL;DR Java에서 스레드(Thread)마다 독립적으로 사용할 수 있는 변수를 말한다. ThreadLocal 이란? ThreadLocal 은 스레드(thread)마다 독립적으로 사용할 수 있는 변수를 말하며 해당 스레드에서 전역 변수처럼 사용할 수 있다. 다만 스레드 풀 환경인 경우 사용이 끝난 스레드의 ThreadLocal을 해제(remove) 하지 않고 반환하면 해당 스레드가 재사용될 때 이전 실행에서 사용된 변수 값이 다음 스레드 실행에 영향을 미칠 수 있다. ThradLocal 사용법 1. ThreadLocal 객체 생성 ThreadLocal threadLoal = new ThreadLocal(); 2. ThreadLocal.set() : 현재 스레드에 변수 값을 저장 threadlocal.s..
-
LeetCode - Trim a Binary Search Tree [Java]Algorithms/- LeetCode 2022. 4. 16. 00:59
문제 링크 : Trim a Binary Search Tree Trim a Binary Search Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정답(Solution) class Solution { public TreeNode trimBST(TreeNode root, int low, int high) { if (root == null) return root; if (root.val > high) return trimBST(root.left, low,..
-
LeetCode - Binary Tree Postorder Traversal [Java]Algorithms/- LeetCode 2022. 4. 16. 00:18
문제 링크 : Binary Tree Postorder Traversal Binary Tree Postorder Traversal - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정답(Solution) 재귀풀이 import java.util.*; class Solution { public List postorderTraversal(TreeNode root) { List answer = new ArrayList(); dfs(root, answer); return ..
-
프로그래머스 - 올바른 괄호의 갯수 [자바]Algorithms/- 프로그래머스 2022. 3. 15. 23:07
문제 링크 : 올바른 괄호의 갯수 코딩테스트 연습 - 올바른 괄호의 갯수 올바른 괄호란 (())나 ()와 같이 올바르게 모두 닫힌 괄호를 의미합니다. )(나 ())() 와 같은 괄호는 올바르지 않은 괄호가 됩니다. 괄호 쌍의 개수 n이 주어질 때, n개의 괄호 쌍으로 만들 수 있는 모 programmers.co.kr 정답(Solution) import java.util.*; class Solution { private class P { int open, close; P(int open, int close){ this.open = open; this.close = close; } } public int solution(int n) { int answer = 0; Stack st = new Stack(); ..