Strings Flashcards
1
Q
What is a String?
A
A string is a sequence of characters. Many tips that apply to arrays also apply to strings.
2
Q
Access
Search
Insert
Remove
A
Operation Big-O
Access O(1)
Search O(n)
Insert O(n)
Remove O(n)