autocomplete algorithms, papers, strategies, etc

后端 未结 3 624
清酒与你
清酒与你 2020-12-12 17:59

I\'m wondering if anyone has good resources to read or code to experiment for \"autcomplete\"

I would like to know what\'s the theory behind autocompletion, where t

3条回答
  •  北海茫月
    2020-12-12 18:23

    Check out this blog on implementing autocomplete using GWT:

    http://jroller.com/glongman/entry/gwt_autocompleter

    But I would recommend you first start with something very simple on your own to grasp how the implementation is done. I'd start with a Trie, maybe even stored completely on the client, then progress to optimizing with server queries if you think they're necessary.

提交回复
热议问题