Update 2_Bronze_STL_Java.md

This commit is contained in:
Darren Yao 2020-06-07 01:39:51 -07:00 committed by GitHub
parent be3411b18b
commit bb310d1c34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,6 @@
### Author: Darren Yao
-> Mostly copy and pasted from chapter 4 of my book.
# Data Structures
A data structure determines how data is stored. (is it sorted? indexed? what operations does it support?) Each data structure supports some operations efficiently, while other operations are either inefficient or not supported at all. This chapter introduces the data structures in the Java standard library that are frequently used in competitive programming.