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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Access
Search
Insert
Remove

A

Operation Big-O
Access O(1)
Search O(n)
Insert O(n)
Remove O(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly