Which data structure is better at creating a dictionary based text editor? DAWG or Radix Tree?
Please give your analysis based on their ease of creation vs there speed; also provide any links if you can on how could i create these?
Which data structure is better at creating a dictionary based text editor? DAWG or
Share
It depends on what you are trying to achieve although:-
DAWG has an advantage of memory utilization.
Radix tree performs insertion, deletion and searching in O(k) time which is O(logn) in Balanced trees.