You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Triangulator uses ArrayList to handle list of triangles, but operations like search, delete are often performed on these list. Performance might improve if hash map is instead since it performs same operation in almost constant time instead of linear time.
The text was updated successfully, but these errors were encountered:
suyashmahar
changed the title
*Possible* performance improvement on usage of hash map instead of list
[Performance Improvement] Use of hash map instead of list in triangulator
May 13, 2017
Triangulator uses ArrayList to handle list of triangles, but operations like search, delete are often performed on these list. Performance might improve if hash map is instead since it performs same operation in almost constant time instead of linear time.
The text was updated successfully, but these errors were encountered: