Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 272 Bytes

array-notes.md

File metadata and controls

13 lines (9 loc) · 272 Bytes

Array Study Notes

General Notes

  • Arrays are also known as lists, organizes items in sequentially (One after another)
  • Simpliest and most widely used of the data structures

Big O

lookup is O(1)
push is O(1)
insert is O(n)
delete is O(n)