Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 604 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 604 Bytes

Java_Data_Structure

Java 자료구조 ( Data_Structure )

  • Java를 이용한 자료구조로 여러가지 방식을 직접 구현하여, 컬렉션 프레임워크의 원리를 파악합니다.
  • List
  • Stack
  • Depth First Search - Tree Preorder
  • Queue
  • Breadth First Search - Tree Level Traversal
  • Binary Tree ( 자식 Tree가 양쪽 삭제일시 미구현 )
  • Hash function : divide
  • Hash function : digits folding
  • Hash function : Open Addressing : Linear Probing
  • Hash function : Close Addressing : Bucket ( Collision 상황을 가정 )
  • Graph : Adjceny Matrix
  • Graph : Topological Sort