Skip to Content
똑똑한 코드 작성을 위한 실전 알고리즘
book

똑똑한 코드 작성을 위한 실전 알고리즘

by 조지 하이네만, 윤대석
May 2022
Beginner to intermediate
296 pages
5h 54m
Korean
Hanbit Media, Inc.
Content preview from 똑똑한 코드 작성을 위한 실전 알고리즘
76
똑똑한 코드 작성을 위한 실전 알고리즘
2.13
연습 문제
1.
[표
2
-
5
]의 각 코드 조각의 시간 복잡도를 평가하자.
2-5
분석할 코드 조각
코드-
1
for i in range(100):
for j in range(N):
for k in range(10000):
...
코드-
2
for i in range(N):
for j in range(N):
for k in range(100):
...
코드-
3
for i in range(0,N,2):
for j in range(0,N,2):
...
코드-
4
while N > 1:
...
N = N // 2
코드-
5
for i in range(2,N,3):
for j in range(3,N,2):
...
2.
이 장에서 설명한 기술을 이용해 [코드
2
-
6
]의
f4
함수가 반환하는
ct
의 값을 모델링하자.
코드
2-6
분석할 예제 함수
def f4(N):
ct = 1
while N >= 2:
ct = ct + 1
N = N ** 0.5
return ct
이 장에서 사용한 모델 중 어느 것도 정확하지 않을 것이다. 대신에 밑수가
2
a
×
log
(
log
(
N
))을 기반으로 모델을 개발해보자.
N
=
2
50
까지 모델과 실제 결과를 비교하는
표를 구성하자. 이 동작의 알고리즘은
O
(
log
(
log
(
N
))으로 분류할 수 있을 것이다.
77
2
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

데이터 익명화를 위한 파이프라인

데이터 익명화를 위한 파이프라인

루크 아버클, 칼리드 엘 에맘
개발 7년차, 매니저 1일차

개발 7년차, 매니저 1일차

권원상, 한민주, 카미유 푸르니에

Publisher Resources

ISBN: 9791162245644