Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 339211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:30:06+00:00 2026-05-12T10:30:06+00:00

Suppose I’m given a large dictionary in flat file with 200 million words and

  • 0

Suppose I’m given a large dictionary in flat file with 200 million words and my function needs to check the existence of any given word in the dictionary, what’s the fastest way to do it? You can’t store the dictionary in the memory because you only have 1GB of memory. You can store it in the database, however querying it would still be very very slow without any optimization. You can’t index the full words because you don’t have enough resources.

Edit: in addition to the file optimization approach mentioned below, are there any database optimization? I’m thinking of creating partial indices, say for every 2 letters in the word up to a limit, I create an index. Would this speed up the db query?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:30:07+00:00Added an answer on May 12, 2026 at 10:30 am

    Binary search

    Assuming the dictionary has the words in alphabetical order, I would attempt a modified binary search. Divide and conquer the file by jumping to a midpoint location in the file and seeing what word is there. If guessed to high, split the lower in half and try again until there’s no file location to attempt or the word is found.

    (As outis mentioned in a comment, after jumping to a file location, you’ll need to scan backwards and forwards to find the boundaries of the word you jumped to.)

    You might be able to optimize this by guessing a location chunk right off the bat based on the first letter of the word. For example, if the word begins with “c” start your search around the 3/26th section of the file. Though, in reality, I think this early guess will only make a negligible difference overall.

    Other optimizations could include keeping a small subset of an index. For example, keep an index of the first word that starts with each letter of the alphabet, or keep an index of each word that starts with each possible two letter combination. This would allow you to immediately narrow your search area.

    O(log n)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a large list of words. For an example: >>> with open('/usr/share/dict/words')
Suppose a file saved on the disk: HTTP/1.1 200 OK Date: Thu, 28 Jun
Suppose i have this file var1 300 var1 400 var3 600 var1 200 Now
suppose i have a .on() function wherein i select multiple ids $(#i, #am, #your,
Suppose we have the name written in any none-latin letters - languages, like Arabic,
Suppose I have defined the symbolic function x -> f(x) in Matlab. How can
Suppose I have this function template: template<typename T1, typename T2> auto DoSomething(const T1& arg);
Suppose I have a dictionary a which is a = {'a':1,'b':2,'c':3,'d':4,'e':5} Now If I
Suppose the following function: float *dosomething(const float *src, const int N) { float *dst
Suppose i have an XML file, that i use as local database, like this):

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.