Skip to Content
자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘
book

자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘

by 유동환, 앨런 B. 다우니
June 2018
Beginner to intermediate
184 pages
3h 30m
Korean
Hanbit Media, Inc.
Content preview from 자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘
130
자바로 배우는 핵심 자료구조와 알고리즘
13.3
put
메서드 구현하기
put
메서드는
get
메서드보다 조금 더 복잡합니다. 이는
put
메서드가 다음 두 가지 경우를 모
두 처리해야 하기 때문입니다.
주어진 키가 트리에 이미 있으면 값을 대체하고 기존 값을 반환합니다.
주어진 키가 트리에 없으면 올바른 위치에 새로운 노드를 추가해야 합니다.
실습
10
에서 다음 시작 코드를 제공하고 여러분에게
putHelper
메서드를 채우게 하였습니다
(파일명:
MyTreeMap.java
)
.
public V put
(
K key
,
V value
)
{
if
(
key
==
null
)
{
throw new IllegalArgumentException
();
}
if
(
root
==
null
)
{
root
=
new Node
(
key
,
value
);
size
++;
return null
;
}
return putHelper
(
root
,
key
,
value
);
}
필자의 해답은 다음과 같습니다.
(파일명:
MyTreeMap.java
)
private V putHelper
(
Node node
,
K key
,
V value
)
{
Comparable
<?
super K
>
k
=
(
Comparable
<?
super K
>)
key
;
int cmp
=
k
.
compareTo
(
node
.
key
);
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

자바 마이크로서비스를 활용한 SRE : 기업에서 신뢰할 수 있는 마이크로서비스를 위한 패턴

자바 마이크로서비스를 활용한 SRE : 기업에서 신뢰할 수 있는 마이크로서비스를 위한 패턴

조너선 슈나이더

Publisher Resources

ISBN: 9791162240847