Hi , i have this Binary-Tree structure :
Delphi-Quellcode:
type
PDictionary=^Dictionary;
Dictionary=record
word:string;
meaning:String;
key:integer;
Right,Left:Dictionary
end;
How to searche this Binary-tree for a value ( used in Word ) with Option : MatchCase then if the Value is found it will be listed in a ListBox with meaning+key value .
many thanks