July 1, 2021
Introduction
It is such exciting project to work on. I like to learn how to write my own Trie and then experience challenges how to scale the data with million rows of domains.
Warmup | Auto complete
I spent time to read the project related to autocomplete using Google search, and I found out two good examples; After hands on experience, I decided to go for one of them.
- How to Implement Autocomplete textbox in ASP.NET WITHOUT using Webservice & AJAX autocomplete extender. Here is the link;
- Download source from the above link;
- Tried and then I decided not to use the source code;
- AutoCompleteExtender in ASP.NET, here is the link;
- Download source code, and I tried and it works. So I decided to use AutoCompleteExtender;
- Here is the blog to document my learning exeperience;
- Worked on C# Trie, started from Leetcode discussion post I had and then I worked on .csv file import, and then tested the code to compare the result using Excel -> table -> Filter -> startsWith;
- C# source code is here;
- Next step is to work on C#, ASP.NET web form application.
- The biggest challenge is to deal with out-of-memory issue. I tried to look up Google, stackoverflow.com, and also looked up a few ASP.NET programming books, but I could not figure out how to solve the issue;
- I did spend time to learn web.config how to set maximum size for Response;
- I did come cross a few issues how to work with prefix and then display results accordingly.
No comments:
Post a Comment