Greg Hackmann
4482d85139
bionic: reimplement property area as hybrid trie/binary tree
See the comments for an explanation of how properties are stored. The trie structure is designed to scale better than the previous array-based implementation. Searching an array with n properties required average O(n) string compares of the entire key; searching the trie requires average O(log n) string compares of each token (substrings between '.' characters). Change-Id: Ic28b3c5246004a3c502eb02d6e1c9b512884d872 Signed-off-by: Greg Hackmann <ghackmann@google.com>
Description
No description provided
Languages
C
68.1%
Assembly
16.2%
C++
13.4%
Makefile
1.1%
Python
0.9%
Other
0.2%