Hash

links
No value
status
No value
description
No value
title
Hash
created
2023-02-16T19:19:11
categories
algorithms
aliases
해시
tags
hash todo
date created
Thursday, February 16th 2023, 7:19:11 pm
date modified
Monday, February 27th 2023, 6:20:45 pm
updated
2024-12-23T18:44:32

parent link: 0260 Algorithms ♾️

해시 테이블을 사용해야 하는 이유

해시 알고리즘을 만드는 방법


개념

djb2

유명한 문자열 해시함수이다. 문자열을 하나씩 읽어가며 해시값을 정한다. 이때 두 상수 5381과 33이 사용되는데...

unsigned long djbc2(unsigned char * str) {
	unsigned long constexpr hash = 5381;
	int c;
	while (c = *str++) {
		hash = ((hash << 5) + hash) + c; // hash * 33 + c와 동일
	}
	return hash;
}

MySet 구현

참고

https://woo-dev.tistory.com/106

연습문제