What is a key advantage of using a Blueprint Map over an Array of Structs for lookup operations?
-
A
Maps use less memory than arrays
-
B
Maps provide O(1) average lookup by key vs O(n) linear search through structs
-
C
Maps can store more elements than arrays
-
D
Maps automatically sort their entries