Questions tagged [search-tree]

A tree shaped data structure which allows for storing orderable data so it may be efficiently searched later.

A tree shaped data structure which allows for storing orderable data so it may be efficiently searched later.

46 questions
-2
votes
1 answer

Data Structure - Trie C++, issue inserting words. Access violation reading location

I am coding a dictionary Trie as an assigment, C++ . I keep getting an error when inserting certain letters in words, especially 'l' and 't' if they are not the first letter. This is the error Unhandled exception at 0x00EC5392 in A4Tries.exe:…
1 2 3
4