# Algorithms
백준 18108(ft.rust)
const STANDARD : i32 = 543; - 불기 연도와 서기 연도의 차이인 543을 상수 STANDARD로 선언합니다. 이 상수는 i32 형태의 정수입니다.let mut input = String::new(); - 빈 문자열을 만들어 input 변수에 저장합
백준 10926(ft. rust)
??! 성공 문제 준하는 사이트에 회원가입을 하다가 joonas라는 아이디가 이미 존재하는 것을 보고 놀랐다. 준하는 놀람을 ??!로 표현한다. 준하가 가입하려고 하는 사이트에 이미 존재하는 아이디가 주어졌을 때, 놀람을 표현하는 프로그램을 작성하시오. 입력 첫
Leader
이 코드는 주어진 배열 A에서 가장 많이 등장하는 요소(리더)를 찾는 fastLeader 함수를 구현합니다. 배열 A를 정렬한 후, 배열의 중간에 위치한 요소를 후보로 선정합니다. 그 후, 배열을 순회하면서 해당 후보가 얼마나 많이 등장하는지 세고, 만약 그 수가 배열

Binary Trees
A node in a binary tree typically has an item and three pointers: parent pointer, left pointer(child) and right pointer(child). A root is a node that

Linear Sorting
여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 영어 강의인만큼 요약도 영어로 작성하고자 한다Suppose u is small and all the keys are unique. Make

Hashing
여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 영어 강의인만큼 요약도 영어로 작성하고자 한다A comparison model or comparison tree consists of in

Sets and Sorting
여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 영어 강의인만큼 요약도 영어로 작성하고자 한다A set interface is a container that stores a sequenc

Data Structures and Dynamic Arrays
Interface, or API, is the specification of what you want to do, or in other words, what data you can store and data structure is the representation of

Algorithms and Computation
유튜브의 MIT OpenCourseWare 채널에는 MIT의 다양한 학과 강의가 있다. 여기에 정리할 요약 노트의 원 강의는 MIT 6.006 Introduction to Algorithms, Spring 2020로, 교수님들이 알고리즘/데이터 구조를 자세히 설명해주시

Algorithms and Data Structures - 5 Problem Solving Patterns
problem solving patters
Algorithms and Data Structures - 4 Algorithms and Problem Solving Approach
Problem Solving Approach
Algorithms and Data Structures - 3 Arrays and Objects and built-in methods Performance
performance
백준 1002(ft. rust)
두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오.첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)첫째 줄에 A×B를 출력한다.1 223 412case-1 코드와 유사하지만, 입력을 처리하는 방식에 약간의 차이가 있습니다.

BeadSort
SORT java 언어 알고리즘 중 sort에 대하여 코드 리뷰. 그 중 BeadSort에 대하여 리뷰 양수만 사용할 수 있는 특징을 가지고 있다. int[]인 unsorte를 argument로 받으며 리턴 값은 int[]인 sort 메서드에서 정리를 하고 있다.