ํ์คํ ์น๐ ๊ฐ๋ฐ์ ์ง๋ง์ ๐ง๐ฝโ๐ป
โ ์ธ๊ณต์ง๋ฅ ๊ด์ฌ ๐ค
Categories
-
โฃ
โถ COMPUTER_SCIENCE
๐: 7 -
โฃ
โถ WEB
๐: 3 -
โฃ
โถ ETC
๐: 3-
โ
โฃ
ETCS
๐: 10 -
โ
โฃ
SUBBRAIN ๊ฐ๋ฐ๊ธฐ
๐: 5 -
โ
โ
YOS ๊ฐ๋ฐ๊ธฐ
๐: 1
-
โ
โฃ
-
โ
โถ AI
๐: 9-
โฃ
AITOOLS
๐: 3 -
โฃ
CV
๐: 2 -
โฃ
DEEP_LEARNING
๐: 1 -
โฃ
DATA_VIS
๐: 2 -
โฃ
GRAPH
๐: 1 -
โฃ
LIGHTWEIGHT
๐: 1 -
โฃ
MATH
๐: 1 -
โฃ
NLP
๐: 3 -
โ
STRUCTURED_DATA
๐: 2
-
โฃ
Python for algorithms-Libraries
Python for Algorithms-Libraries
- Template.py
- functools
- itertools
- bisect
- Collections
- ์ค์ํ๊ณ ์์ฃผ ์ฌ์ฉ๋๋ ๋ค๋ฅธ ์๋ฃ ๊ตฌ์กฐ๋ค
- ์ฌ๊ทํจ์
- JAVA
๊ฐํธํ๊ฒ ์ฌ์ฉํ ์ ์๋ ํ์ด์ฌ ์ฝ๋๋ค
Template.py
- ์๊ฐ ๋น๊ต, ํ ์คํธ ์ผ์ด์ค ์ ๋ ฅ๊ณผ ์ถ๋ ฅ, ์ ๋ต ๋น๊ต ๋ฑ์ ํ ํ์ผ์ ๋ด์ template.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
{: #coding-utf-8}
# ----------------------------------------------------------------------------
{: #}
# Created By : Junseok Yun(markkorea@naver.com)
{: #created-by- -junseok-yun-markkorea-naver-com}
# Created Date: 2022-08-10
{: #created-date-2022-08-10}
# ---------------------------------------------------------------------------
{: #}
""" Python template file for algorithm competition. """
# ---------------------------------------------------------------------------
{: #}
import sys
import time
# input = sys.stdin.readline
{: #input-sys-stdin-readline}# Change `input` func to `readline` func.
# print(sys.getrecursionlimit())
{: #print-sys-getrecursionlimit}# Print maximum recursion limit.
sys.setrecursionlimit(987654321) # Change maximum recursion limit.
arrayOfInput = [
# ์
๋ ฅ๊ฐ ๋ฆฌ์คํธ
]
arrayOfAnswer = [
# ์ ๋ต ๋ฆฌ์คํธ
]
if len(arrayOfInput) != len(arrayOfAnswer):
raise Exception(
f"Error: (len(arrayOfInput)={len(arrayOfInput)}) != (len(arrayOfAnswer)={len(arrayOfAnswer)})")
def solution(
# your arguments
):
result = []
return result
print("---------------------------------------------------------------------------------------------------------------------------------------")
print("|case| Input | correct | submitted | result|time(ms)|")
print("=======================================================================================================================================")
for case, (example_input, correct_answer) in enumerate(zip(arrayOfInput, arrayOfAnswer)):
startTime = time.time() * 1000
answer = solution(*example_input)
responseTime = time.time() * 1000 - startTime
print(f"|{case:^4}|{str(example_input):^35.35}|{str(correct_answer):^37.37}|{str(answer):^37.37}|{'OOO' if answer == correct_answer else 'XXX':*^7}|{responseTime:^8.3f}|")
print("---------------------------------------------------------------------------------------------------------------------------------------")
functools
๊ณ ์ฐจ ํจ์์ ์ฝ๋ฌ๋ธ ๊ฐ์ฒด์ ๋ํ ์ฐ์ฐ, ์ฆ ํจ์๋ฅผ ์ ๋ ฅ ๊ฐ ํน์ ์ถ๋ ฅ ๊ฐ์ผ๋ก ์ฃผ๋ก ๋ค๋ฃจ๋ ํจ์ ๋ค์ด๋ค.
์ด๋ ต๊ฒ ๊ตฌํํด์ผ ํ ์ฝ๋๋ค์ด ์ฝ๊ฒ ์ธ ์ ์๊ฒ ๋์ด ์๋ค.
๋ง์ฝ ํ์ค ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ฌ์ฉํ ์ ์๋ ์ํ์ ๋๋นํ์ฌ ํด๋น ๊ตฌํ ์ฝ๋๋ค์ ์ฌ๋ ค๋์๋ค.
cmp_to_key()
sorted
, sort
ํจ์๋ฅผ ์ด์ฉํด ์ ๋ ฌ ์ ๋น๊ต ๊ธฐ์ค์ ์ค ์ ์์
title:cmp_to_key()
์ ํ์ฉ ์์
collapse: true
from functools import cmp_to_key
points = [{'x': 1, 'y': 2}, {'x': 2, 'y': 2},
{'x': 2, 'y': 1}, {'x': 1, 'y': 1}]
# ๋จ์ ๋น๊ต ์ค์ ์ lambda๋ฅผ ์ด์ฉํด ๊ฐ๋ฅ
{: #๋จ์-๋น๊ต-์ค์ ์-lambda๋ฅผ-์ด์ฉํด-๊ฐ๋ฅ}
points.sort(key=lambda x: x['x'])
def cmp(a, b):
# ํ์ ๋ฆฌํด ๊ฐ
# 1 : ์ข์ธก์ด ๋ ํผ
# 0 : ๋ ๊ฐ์ด ๊ฐ์
# -1 : ์ฐ์ธก์ด ๋ ํผ
if a['y'] == b['y']:
if a['x'] > b['x']:
return 1
elif a['x'] == b['x']:
return 0
elif a['x'] < b['x']:
return -1
return 1 if a['y'] > b['y'] else -1
points.sort(key=cmp_to_key(cmp))
sorted(points, key=cmp_to_key(cmp), reverse=True)
print(points)
# [{'x': 1, 'y': 1}, {'x': 2, 'y': 1}, {'x': 1, 'y': 2}, {'x': 2, 'y': 2}] 'y': 2}]
{: #x-1-y-1-x-2-y-1-x-1-y-2-x-2-y-2-y-2}
cmp_to_key()
์ ๊ตฌํ
def cmp_to_key(mycmp):
'Convert a cmp= function into a key= function'
class K(object):
def __init__(self, obj, *args):
self.obj = obj
def __lt__(self, other):
return mycmp(self.obj, other.obj) < 0
def __gt__(self, other):
return mycmp(self.obj, other.obj) > 0
def __eq__(self, other):
return mycmp(self.obj, other.obj) == 0
def __le__(self, other):
return mycmp(self.obj, other.obj) <= 0
def __ge__(self, other):
return mycmp(self.obj, other.obj) >= 0
def __ne__(self, other):
return mycmp(self.obj, other.obj) != 0
return K
points = [{'x': 1, 'y': 2}, {'x': 2, 'y': 2},
{'x': 2, 'y': 1}, {'x': 1, 'y': 1}]
def cmp(a, b):
if a['y'] == b['y']:
if a['x'] > b['x']:
return 1
elif a['x'] == b['x']:
return 0
elif a['x'] < b['x']:
return -1
return 1 if a['y'] > b['y'] else -1
points.sort(key=cmp_to_key(cmp))
print(points)
- ๋ค๋ฅธ ์ฌ๋์ x์ y๊ฐ์ ํฉ์ ํตํด ์ ๋ ฌํ๋, y์ ๊ฐ์ค์น๋ฅผ ์ ๊ฒ ์ฃผ์ด (x์ ์ต๋๊ฐ์ผ๋ก ๋๋ ์์ค์ ๊ฐ์ค์น) ๊ตฌ๋ณํ๋ ๋ฐฉ๋ฒ์ผ๋ก ๋น ๋ฅด๊ฒ ์ ๋ ฌํ๋ค.
reduce()
์๋ฃ ๊ตฌ์กฐ ๋ด์ ๊ฐ ์์๋ค์ ์์๋๋ก ํจ์๋ฅผ ์ ์ฉํด ๋์ ๋ ๊ฐ์ ๋ณด์ฌ์ค๋ค.
accumulate
ํจ์์ ๋ฌ๋ฆฌ ๊ฒฐ๊ณผ๊ฐ์ด iterator
๊ฐ ์๋ ๊ฐ์ด๋ค.
from itertools import accumulate
from operator import add
print(list(accumulate([1, 2, 3, 4, 5], add))) # [1, 3, 6, 10, 15]
# iterator๋ก ๋์ค๋ฏ๋ก list ํจ์๋ฅผ ํตํด list๋ก ๋ฐ๊ฟ
{: #iterator๋ก-๋์ค๋ฏ๋ก-list-ํจ์๋ฅผ-ํตํด-list๋ก-๋ฐ๊ฟ}
# add ํจ์๋ฅผ ๋ง๋๋ ๋์ operator๋ก ์ด์ฉ ๊ฐ๋ฅ
{: #add-ํจ์๋ฅผ-๋ง๋๋-๋์ -operator๋ก-์ด์ฉ-๊ฐ๋ฅ}
reduce()
์ ํ์ฉ ์์
from functools import reduce
print(reduce(lambda accumulated, element: accumulated + element, [1, 2, 3, 4, 5])) #15
reduce()
์ accumulate()
์ ๊ตฌํ
def reduce(function, iterable, initializer=None):
it = iter(iterable)
if initializer is None:
value = next(it)
else:
value = initializer
for element in it:
value = function(value, element)
return value
def accumulate(iterable, func=operator.add, *, initial=None):
it = iter(iterable)
total = initial
if initial is None:
try:
total = next(it)
except StopIteration:
return
yield total
for element in it:
total = func(total, element)
yield total
@cache
ํจ์ ์์ ๋ฐ์ฝ๋ ์ดํฐ๋ก ์ด์ฉํ์ฌ ์์ฝ๊ฒ Memoization ์ ๊ตฌํํ ์ ์๋ค.
@cache
๋ฐ์ฝ๋ ์ดํฐ์ ํ์ฉ ์์
from functools import cache
recursiveCall = 0
@cache
def factorial(n):
global recursiveCall
recursiveCall = recursiveCall + 1 # ์ฌ๊ทํจ์๊ฐ ์คํ๋ ๋๋ง๋ค ์ฆ๊ฐ
return n * factorial(n-1) if n else 1
print("value: ", factorial(10)) # 3628800
print("recursive called : ", recursiveCall) # 11
recursiveCall = 0
print("value: ", factorial(5)) # 120
print("recursive called : ", recursiveCall) # 0
# ์์ ์คํํ ๊ฒฐ๊ณผ๊ฐ ์ ์ฅ๋์ด ๋ฐ๋ก ๊ฐ์ ๊ฐ์ ธ์ด
{: #์์-์คํํ-๊ฒฐ๊ณผ๊ฐ-์ ์ฅ๋์ด-๋ฐ๋ก-๊ฐ์-๊ฐ์ ธ์ด}
recursiveCall = 0
print("value: ", factorial(12)) # 479001600
print("recursive called : ", recursiveCall) # 2
# ์์ ์คํํ ๊ฒฐ๊ณผ์ ์ถ๊ฐ๋ก ๋๋ฒ๋ง ๋ ์คํํด ๊ฐ์ ๊ฐ์ ธ์ด
{: #์์-์คํํ-๊ฒฐ๊ณผ์-์ถ๊ฐ๋ก-๋๋ฒ๋ง-๋-์คํํด-๊ฐ์-๊ฐ์ ธ์ด}
itertools
ํจ์จ์ ์ธ ๋ฃจํ์ ์ํ ์ดํฐ๋ ์ดํฐ๋ฅผ ๋ง๋๋ ํจ์
cycles()
๊ฐ์ ๊ฐ์ ๋ฌดํํ ๋ฐ๋ณตํ์ฌ ๋๋ ค์ฃผ๋ iterator๋ฅผ ์์ฑ
cycles()
์ ํ์ฉ ์์
from itertools import cycle
for i in cycle("ABCD"):
print(i) # ABCD ๋ฌดํ ๋ฐ๋ณต
dispenser = cycle("ABCD")
peoples = 10
for i in range(peoples):
print(dispenser.__next__())
# A B C D A B C D A B ์ถ๋ ฅ
cycles()
์ ๊ตฌํ
def cycle(iterable):
saved = []
for element in iterable:
yield element
saved.append(element)
while saved:
for element in saved:
yield element
for i in cycle("ABCD"):
print(i) # ABCD ๋ฌดํ ๋ฐ๋ณต
compress()
True
๋ก ํ๋ช
๋๋ ์ธ๋ฑ์ค์ ์์๋ง ์ถ์ถํ์ฌ ์ดํฐ๋ ์ดํฐ๋ก ์์ฑ.
data ๋ฆฌ์คํธ๋ selector ๋ฆฌ์คํธ ๋ ์ค์ ํ๋๋ง ์์ง๋์ด๋ ์ค๋จ๋จ
compress()
์ ํ์ฉ ์์
from itertools import compress
a = [1, 2, 3, 4, 5]
b = [True, False, False, True, True]
# filter ํจ์ ๋ฑ์ ์ด์ฉํด ์์ฑํ selector ๋ฆฌ์คํธ
{: #filter-ํจ์-๋ฑ์-์ด์ฉํด-์์ฑํ-selector-๋ฆฌ์คํธ}
print(list(compress(a, b))) # [1, 4, 5]
# selector ๋ฆฌ์คํธ์์ true ์๋ ๊ฐ๋ค๋ง ์ถ๋ ฅ๋จ
{: #selector-๋ฆฌ์คํธ์์-true-์๋-๊ฐ๋ค๋ง-์ถ๋ ฅ๋จ}
compress()
์ ๊ตฌํ
def compress(data, selectors):
return (d for d, s in zip(data, selectors) if s)
a = [1, 2, 3, 4, 5]
b = [True, False, False, True, True]
print(list(compress(a, b))); # [1, 4, 5]
์กฐํฉ๊ณผ ์์ด์ ์ํ ํจ์๋ค
product, permutations, combinations, combinations_wtih_replacement()
ํจ์๋ค์ ์๊ณ ๋ฆฌ์ฆ ๋ฌธ์ ๋ก ์์ฃผ ์ถ์ ๋๋ ์กฐํฉ๊ณผ ์์ด์ ์์ฑํ ์ ์๋ ํจ์๋ค์ด๋ค.
from itertools import product, permutations, combinations, combinations_with_replacement
print(list(product('ABCD', repeat=2))) # ์ค์ฒฉ๋ for ๋ฃจํ, ๋ชจ๋ ์กฐํฉ๊ณผ ์์ด์ ์์ฑํ๊ฒ ๋จ.
# [('A', 'A'), ('A', 'B'), ('A', 'C'), ('A', 'D'), ('B', 'A'), ('B', 'B'), ('B', 'C'), ('B', 'D'), ('C', 'A'), ('C', 'B'), ('C', 'C'), ('C', 'D'), ('D', 'A'), ('D', 'B'), ('D', 'C'), ('D', 'D')]
{: #a-a-a-b-a-c-a-d-b-a-b-b-b-c-b-d-c-a-c-b-c-c-c-d-d-a-d-b-d-c-d-d}
print(list(permutations('ABCD', 2))) # ์์ด ์์ฑ,
# [('A', 'B'), ('A', 'C'), ('A', 'D'), ('B', 'A'), ('B', 'C'), ('B', 'D'), ('C', 'A'), ('C', 'B'), ('C', 'D'), ('D', 'A'), ('D', 'B'), ('D', 'C')]
{: #a-b-a-c-a-d-b-a-b-c-b-d-c-a-c-b-c-d-d-a-d-b-d-c}
print(list(combinations('ABCD', 2))) # ์กฐํฉ ์์ฑ
# [('A', 'B'), ('A', 'C'), ('A', 'D'), ('B', 'C'), ('B', 'D'), ('C', 'D')]
{: #a-b-a-c-a-d-b-c-b-d-c-d}
print(list(combinations_with_replacement('ABCD', 2))) # n๋ฒ ์ค๋ณต ๊ฐ๋ฅํ ์กฐํฉ ์์ฑ
# [('A', 'A'), ('A', 'B'), ('A', 'C'), ('A', 'D'), ('B', 'B'), ('B', 'C'), ('B', 'D'), ('C', 'C'), ('C', 'D'), ('D', 'D')]
{: #a-a-a-b-a-c-a-d-b-b-b-c-b-d-c-c-c-d-d-d}
def product(*args, repeat=1):
pools = [tuple(pool) for pool in args] * repeat
result = [](){: .wikilink}{:target=\"_blank\"}
for pool in pools:
result = [x+[y] for x in result for y in pool]
for prod in result:
yield tuple(prod)
def permutations(iterable, r=None):
pool = tuple(iterable)
n = len(pool)
r = n if r is None else r
for indices in product(range(n), repeat=r):
if len(set(indices)) == r:
yield tuple(pool[i] for i in indices)
def permutations_standalone(iterable, r=None):
pool = tuple(iterable)
n = len(pool)
r = n if r is None else r
if r > n:
return
indices = list(range(n))
cycles = list(range(n, n-r, -1))
yield tuple(pool[i] for i in indices[:r])
while n:
for i in reversed(range(r)):
cycles[i] -= 1
if cycles[i] == 0:
indices[i:] = indices[i+1:] + indices[i:i+1]
cycles[i] = n - i
else:
j = cycles[i]
indices[i], indices[-j] = indices[-j], indices[i]
yield tuple(pool[i] for i in indices[:r])
break
else:
return
def combinations(iterable, r):
pool = tuple(iterable)
n = len(pool)
for indices in permutations(range(n), r):
if sorted(indices) == list(indices):
yield tuple(pool[i] for i in indices)
def combinations_standalone(iterable, r):
pool = tuple(iterable)
n = len(pool)
if r > n:
return
indices = list(range(r))
yield tuple(pool[i] for i in indices)
while True:
for i in reversed(range(r)):
if indices[i] != i + n - r:
break
else:
return
indices[i] += 1
for j in range(i+1, r):
indices[j] = indices[j-1] + 1
def combinations_with_replacement(iterable, r):
pool = tuple(iterable)
n = len(pool)
for indices in product(range(n), repeat=r):
if sorted(indices) == list(indices):
yield tuple(pool[i] for i in indices)
def combinations_with_replacement_standalone(iterable, r):
pool = tuple(iterable)
n = len(pool)
if not n and r:
return
indices = [0] * r
yield tuple(pool[i] for i in indices)
while True:
for i in reversed(range(r)):
if indices[i] != n - 1:
break
else:
return
indices[i:] = [indices[i] + 1] * (r - i)
yield tuple(pool[i] for i in indices)
print(list(product('ABCD', repeat=2)))
print(list(permutations('ABCD', 2)))
print(list(combinations('ABCD', 2)))
print(list(combinations_with_replacement('ABCD', 2)))
bisect
์ด์ง ํ์์ ์ด์ฉํ์ฌ ๋ฆฌ์คํธ ๋ด์ ์์์ ์์น๋ฅผ ํ์ํ๊ฑฐ๋ ์ฝ์
ํ๋ ํจ์๋ฅผ ๊ฐ์ง๊ณ ์๋ค.
์ด์ง ํ์์ ์ง์ ๊ตฌํํ์ง ์๊ณ ๋์ ์ฑ๋ฅ์ ๋ผ ์ ์๋ค.
bisect
์ ํ์ฉ ์์
from bisect import bisect_left, bisect_right, insort_left, insort_right
a = [2, 1, 4, 3]
a.sort() # ๋ฐฐ์ด์ ์ ๋ ฌ๋์์ด์ผ ํ๋ค.
print(bisect_right(a, 3)) # 3 [1, 2, 3, #3๋ฒ ์ธ๋ฑ์ค ์๋ฆฌ#, 4]
print(bisect_left(a, 3)) # 2 [1, 2, #2๋ฒ ์ธ๋ฑ์ค ์๋ฆฌ#, 3, 4]
a = [1, 2, 3, 4]
print(insort_left(a, 3)) # ํจ์ ์์ฒด๋ None์ ๋ฆฌํด # None
print(a) # ๋์ ๋ฐฐ์ด์ ์ถ๊ฐ๋์ด ์์ # [1,2,3,3,4]
a = [1, 2, 3, 4]
print(insort_right(a, 3)) # None
print(a) # [1,2,3,3,4]
bisect
๋ฅผ ์ด์ฉํ ํ์ ํจ์ ๊ตฌํ
def index(a, x):
'Locate the leftmost value exactly equal to x'
i = bisect_left(a, x)
if i != len(a) and a[i] == x:
return i
raise ValueError
def find_lt(a, x):
'Find rightmost value less than x'
i = bisect_left(a, x)
if i:
return a[i-1]
raise ValueError
def find_le(a, x):
'Find rightmost value less than or equal to x'
i = bisect_right(a, x)
if i:
return a[i-1]
raise ValueError
def find_gt(a, x):
'Find leftmost value greater than x'
i = bisect_right(a, x)
if i != len(a):
return a[i]
raise ValueError
def find_ge(a, x):
'Find leftmost item greater than or equal to x'
i = bisect_left(a, x)
if i != len(a):
return a[i]
raise ValueError
bisect
ํจ์๋ค์ ๊ตฌํ
def insort_right(a, x, lo=0, hi=None, *, key=None):
if key is None:
lo = bisect_right(a, x, lo, hi)
else:
lo = bisect_right(a, key(x), lo, hi, key=key)
a.insert(lo, x)
def bisect_right(a, x, lo=0, hi=None, *, key=None):
if lo < 0:
raise ValueError('lo must be non-negative')
if hi is None:
hi = len(a)
if key is None:
while lo < hi:
mid = (lo + hi) // 2
if x < a[mid]:
hi = mid
else:
lo = mid + 1
else:
while lo < hi:
mid = (lo + hi) // 2
if x < key(a[mid]):
hi = mid
else:
lo = mid + 1
return lo
def insort_left(a, x, lo=0, hi=None, *, key=None):
if key is None:
lo = bisect_left(a, x, lo, hi)
else:
lo = bisect_left(a, key(x), lo, hi, key=key)
a.insert(lo, x)
def bisect_left(a, x, lo=0, hi=None, *, key=None):
if lo < 0:
raise ValueError('lo must be non-negative')
if hi is None:
hi = len(a)
if key is None:
while lo < hi:
mid = (lo + hi) // 2
if a[mid] < x:
lo = mid + 1
else:
hi = mid
else:
while lo < hi:
mid = (lo + hi) // 2
if key(a[mid]) < x:
lo = mid + 1
else:
hi = mid
return lo
Collections
ํ์ด์ฌ์ ์๋ฃ ๊ตฌ์กฐ์ ํน์ํ ํํ์ ๋์๋ค
defaultdict
์ด๊ธฐ ๊ฐ์ ์ค์ ํ ์ ์๋ dictionary
defaultdict
์ ํ์ฉ ์์
from collections import defaultdict
int_dict = defaultdict(int)
print(int_dict['no_value']) # 0
int_dict = defaultdict(lambda: 1) # ๊ธฐ๋ณธ๊ฐ ์ง์
print(int_dict['no_value2']) # 1
print(int_dict['str_value'])
int_dict['str_value'] = "str"
print(int_dict) # ๋ฌผ๋ก ๋ค๋ฅธ ์๋ฃํ์ผ๋ก ์ง์ ๋ํ ๊ฐ๋ฅ
OrderedDict
dictionary์ ํค,๊ฐ ํ์ด์ ์ถ๊ฐ๋ก ์์๋ฅผ ์ ์ฉํ ์๋ฃ๊ตฌ์กฐ
OrderedDict
์ ํ์ฉ ์์
from collections import OrderedDict
ordered_dict = OrderedDict()
ordered_dict["1"] = "a"
ordered_dict[2] = 2
ordered_dict["three"] = "3"
print(ordered_dict) # OrderedDict([('1', 'a'), (2, 2), ('three', '3')]
print(ordered_dict.popitem()) # ๋งจ ๋ค์ ํค ๊ฐ์ pop # ('three', '3')
print(ordered_dict) # OrderedDict([('1', 'a'), (2, 2)])
ordered_dict.move_to_end('1') # ํค 1์ ๊ฐ์ ๋งจ ๋ค๋ก
print(ordered_dict) # OrderedDict([(2, 2), ('1', 'a')])
print(list(ordered_dict.items())[0]) # ์ฒซ๋ฒ์งธ ๊ฐ ๊ฐ์ ธ์ค๊ธฐ # (2, 2)
namedtuple
ํํ ๋ด๋ถ์ ๋ด๋ถ์ ํค ๊ฐ์ ์๋ธ ํด๋์ค๋ฅผ ์์ฑํ์ฌ ์ ๊ทผ ๊ฐ๋ฅ
namedtuple
์ ํ์ฉ ์์
from collections import namedtuple
Point = namedtuple('Point', ['x', 'y'])
p = Point(11, y=22) # instantiate with positional or keyword arguments
print(p[0] + p[1]) # indexing like plain tuple (11, 22)
# 33
{: #33}
x, y = p # unpack like a regular tuple
print(x, y)
# (11, 22)
{: #11-22}
print(p.x + p.y) # fields also accessible by name
# 33
{: #33}
print(p)
ChainMap
๋ dictionary๋ฅผ ๋น ๋ฅด๊ฒ ํฉ์น๋๋ฐ ์ฌ์ฉ
ChainMap
์ ํ์ฉ ์์
from collections import ChainMap, OrderedDict
dict1 = {"x": 1, "2": "a"}
dict2 = {"y": 3, "three": "b"}
dict3 = OrderedDict({"z": 4, "1": "one"})
chained = ChainMap(dict1, dict2, dict3)
print(chained) # ChainMap({'x': 1, '2': 'a'}, {'y': 3, 'three': 'b'}, OrderedDict([('z', 4), ('1', 'one')]))
print(chained['2']) # a
print(chained['y']) # 3
print(chained['1'])# one # ๊ฐ๊ธฐ ๋ค๋ฅธ ํค๋ค์ ํ๊บผ๋ฒ์ ์ ๊ทผ ๊ฐ๋ฅ
์ค์ํ๊ณ ์์ฃผ ์ฌ์ฉ๋๋ ๋ค๋ฅธ ์๋ฃ ๊ตฌ์กฐ๋ค
๋จ์ํ ํธ๋ฆฌํ ์์ค์ด ์๋ ํต์ฌ์ ์ผ๋ก ์ฌ์ฉ๋๋ ์๋ฃ ๊ตฌ์กฐ๋ค
deque
์คํ + ํ ๊ธฐ๋ฅ์ด ํฉ์ณ์ง ๋ฆฌ์คํธ
๊ธฐ๋ณธ ๋ฆฌ์คํธ์ ๋ฌ๋ฆฌ pop()
๊ณผ insert()
์ฐ์ฐ์ ์์ ์๊ฐ ๋ง์ ๋๋ผ ์ ์๋ค.
deque
์ ํ์ฉ ์์
from collections import deque
d = deque('12345')
print(d) # deque(['1', '2', '3', '4', '5'])
d.append('6')
d.appendleft('0')
print(d) # deque(['0', '1', '2', '3', '4', '5', '6'])
print(d.pop()) # 6
print(d) # deque(['0', '1', '2', '3', '4', '5'])
print(d.popleft()) # 0
print(d) # deque(['1', '2', '3', '4', '5'])
d.extend('abc')
print(d) # deque(['1', '2', '3', '4', '5', 'a', 'b', 'c'])
d.extendleft('efg')
print(d) # deque(['g', 'f', 'e', '1', '2', '3', '4', '5', 'a', 'b', 'c'])
d.rotate(1)
print(d) # deque(['c', 'g', 'f', 'e', '1', '2', '3', '4', '5', 'a', 'b'])
d.rotate(-1)
print(d) # deque(['g', 'f', 'e', '1', '2', '3', '4', '5', 'a', 'b', 'c'])
# d[0] : ์ต์ข์ธก peek
{: #d-0-์ต์ข์ธก-peek}
# d[-1] : ์ต์ฐ์ธก peek
{: #d-1-์ต์ฐ์ธก-peek}
heapq
์ด์ง ํธ๋ฆฌ๋ฅผ ์ด์ฉํด ์ต์ ํ์ ๊ตฌํ, ์ต๋ ํ์ ๊ตฌํ ํ๊ธฐ ์ํด์๋ ๊ฐ์ -
์ ๋ถ์ฌ ๋ฃ์ด์ค์ผ ํ๋ค.
heapq
์ ํ์ฉ ์์
import heapq
a = [2, 4, 6]
# heap์ ์ฝ์
{: #heap์-์ฝ์
}
heapq.heappush(a, 3)
print(a) # [2, 3, 6, 4]
# ์ต์๊ฐ pop
{: #์ต์๊ฐ-pop}
print(heapq.heappop(a)) # 2
print(a) # [3, 4, 6]
b = [3, 1, 6]
heapq.heapify(b) # b๋ฅผ ํ์ ์ด์ฉํด ์ ๋ ฌ
print(b) # [1, 3, 6]
์ถ์ฒ here
heapq๋ฅผ ์ด์ฉํ์ฌ ์ฐ์ ์์ ํ ๋ฑ์ ๋ง๋ค ์ ์๋์ ๊ฐ์ด __lt__
๋ฉ์๋๋ฅผ ์ค๋ฒ๋ผ์ด๋ฉํ์ฌ ํค๊ฐ์ ๋น๊ต ๋ฐฉ๋ฒ์ ์ ํด์ค ์ ์๋ค.
import heapq
class Node(object):
def __init__(self, val: int):
self.val = val
def __repr__(self):
return f'Node value: {self.val}'
def __lt__(self, other):
return self.val < other.val
heap = [Node(2), Node(0), Node(1), Node(4), Node(2)]
heapq.heapify(heap)
# output: [Node value: 0, Node value: 2, Node value: 1, Node value: 4, Node value: 2]
{: #output-node-value-0-node-value-2-node-value-1-node-value-4-node-value-2}
print(heap)
heapq.heappop(heap)
# output: [Node value: 1, Node value: 2, Node value: 2, Node value: 4]
{: #output-node-value-1-node-value-2-node-value-2-node-value-4}
print(heap)
์ฌ๊ทํจ์
JAVA
์กฐํฉ๊ณผ ์์ด
import java.util.ArrayList;
import java.util.List;
public class CombinationPermutationGenerator {
/**
* Generates all combinations of size k from an array of n elements.
* @param arr the input array
* @param k the size of the combinations to generate
* @return a list of int arrays representing all combinations
*/
public static List<int[]> combinations(int[] arr, int k) {
List<int[]> result = new ArrayList<>();
combinationsHelper(arr, k, 0, new int[k], 0, result);
return result;
}
private static void combinationsHelper(int[] arr, int k, int start, int[] combination, int index, List<int[]> result) {
if (index == k) {
result.add(combination.clone());
return;
}
for (int i = start; i <= arr.length - k + index; i++) {
combination[index] = arr[i];
combinationsHelper(arr, k, i + 1, combination, index + 1, result);
}
}
/**
* Generates all permutations of an array of n elements.
* @param arr the input array
* @return a list of int arrays representing all permutations
*/
public static List<int[]> permutations(int[] arr) {
List<int[]> result = new ArrayList<>();
permutationsHelper(arr, new boolean[arr.length], new int[arr.length], 0, result);
return result;
}
private static void permutationsHelper(int[] arr, boolean[] used, int[] permutation, int index, List<int[]> result) {
if (index == arr.length) {
result.add(permutation.clone());
return;
}
for (int i = 0; i < arr.length; i++) {
if (!used[i]) {
used[i] = true;
permutation[index] = arr[i];
permutationsHelper(arr, used, permutation, index + 1, result);
used[i] = false;
}
}
}
/**
* Generates all permutations with replacement of an array of n elements.
* @param arr the input array
* @param k the number of selections for each position
* @return a list of int arrays representing all permutations with replacement
*/
public static List<int[]> permutationsWithReplacement(int[] arr, int k) {
List<int[]> result = new ArrayList<>();
permutationsWithReplacementHelper(arr, k, new int[k], 0, result);
return result;
}
private static void pesssrmutationsWithReplacementHelper(int[] arr, int k, int[] permutation, int index, List<int[]> result) {
if (index == k) {
result.add(permutation.clone());
return;
}
for (int i = 0; i < arr.length; i++) {
permutation[index] = arr[i];
permutationsWithReplacementHelper(arr, k, permutation, index + 1, result);
}
}
}
higher order functions
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
List<Integer> squares = numbers.stream().map(x -> x * x).collect(Collectors.toList());
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5, 6);
List<Integer> evenNumbers = numbers.stream()
.filter(n -> n % 2 == 0)
.collect(Collectors.toList());
System.out.println(evenNumbers); // Output: [2, 4, 6]
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
int sum = numbers.stream().reduce(0, (a, b) -> a + b);
bisect
import java.util.Arrays;
public class Bisect {
public static int bisectLeft(int[] arr, int x) {
int index = Arrays.binarySearch(arr, x);
return index >= 0 ? index : -index - 1;
}
public static int bisectRight(int[] arr, int x) {
int index = Arrays.binarySearch(arr, x);
return index >= 0 ? index + 1 : -index - 1;
}
public static void main(String[] args) {
int[] arr = {1, 2, 2, 3, 3, 3, 4, 5};
int x = 3;
int leftIndex = bisectLeft(arr, x);
int rightIndex = bisectRight(arr, x);
System.out.println(leftIndex); // Output: 3
System.out.println(rightIndex); // Output: 6
}
}
์ ๋ ฌ
String[] arr = { "apple", "banana", "cherry", "date" };
Arrays.sort(arr, new Comparator<String>() {
public int compare(String s1, String s2) {
return s2.compareTo(s1);
}
});
List<String> list = Arrays.asList("apple", "banana", "cherry", "date");
List<String> sortedList = list.stream()
.sorted()
.collect(Collectors.toList());
heap
PriorityQueue<int[]> hq = new PriorityQueue<>(new Comparator<int[]>() {
public int compare(int[] s1, int[] s2) {
if (s1[1] < s2[1]){
return 1;
}
return -1;
}
});
hq.add(new int[]{start, 0});
_articles/computer_science/algorithm/Python for Algorithms-libraries.md