Skip to content

Instantly share code, notes, and snippets.

View boxgames1's full-sized avatar
🏈
Over the scrimmage line

Oliver Alonso boxgames1

🏈
Over the scrimmage line
View GitHub Profile
@boxgames1
boxgames1 / Single_vs_Double_Linked_Lists.csv
Last active June 16, 2018 09:10
Single vs Double Linked Lists. Method costs comparision
Method Single Double
Insert O(n) O(1)
Erase O(n) O(1)
Find O(n) O(n)
Clear O(n) O(n)
Empty O(1) O(1)
Begin O(1) O(1)
End O(n) O(1)