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

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

by 유동환, 앨런 B. 다우니
June 2018
Beginner to intermediate
184 pages
3h 30m
Korean
Hanbit Media, Inc.
Content preview from 자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘
96
자바로 배우는 핵심 자료구조와 알고리즘
MyLinearMap
객체에는 단일 인스턴스 변수
entries
가 있는데, 이는
Entry
객체들을 담은
ArrayList
입니다. 각
Entry
객체는 키-값 쌍을 포함합니다.
Entry
클래스의 정의는 다음과
같습니다
(파일명:
MyLinearMap.java
)
.
public class Entry implements Map
.
Entry
<
K
,
V
>
{
private K key
;
private V value
;
public Entry
(
K key
,
V value
)
{
this
.
key
=
key
;
this
.
value
=
value
;
}
@
Override
public K getKey
()
{
return key
;
}
@
Override
public V getValue
()
{
return value
;
}
}
특별한 것은 없습니다.
Entry
클래스는 단지 키와 값의 컨테이너입니다. 이 정의는
MyLinear
Map
클래스에 중첩되어 있으므로 같은 타입 파라미터인
K
V
를 사용합니다.
실습에 필요한 내용은 모두 살펴보았습니다. 이제 시작해 봅시다.
9.2
실습
7
이 책의 코드 저장소에서 실습을 위한 소스 파일을 찾을 수 있습니다.
MyLinearMap
.
java
실습의 첫 번째 부분 시작 코드가 있습니다.
MyLinearMapTest ...
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