You can use several words in query to find by all of them at the same time. In addition, if you are lucky search understands word forms and some synonyms. It supports search by title and author. Examples:

  • 305 — search for 305, most probably it will find blogs about the Round 305
  • andrew stankevich contests — search for words "andrew", "stankevich" and "contests" at the same time
  • user:mikemirzayanov title:testlib — search containing "testlib" in title by MikeMirzayanov
  • "vk cup" — use quotes to find phrase as is
  • title:educational — search in title

Results

1.
By Saksham_Sahgal, history, 10 months ago, In English
Bloom Filters : A Beginner’s Guide #### Bloom Filters --------------------------- **Ever wondered how** - a Website with a massive user base could determine whether a username is taken or not in milliseconds? - How does `Chrome` checks if the url you are visiting isn't malicious without comparing it against a bulky list of URLs? - How `Quora` filters out posts you have already seen ? --------------------------- So the problem here is ultimately you have a set of billions of strings, and a server needs to check whether a string passed to it by the client exists in the set or not. Straightforward but Not so Good Ways : Considering we have `N strings` and the `average length` of each string is `L`. **Linear search** - O(N*L) Search Time Complexity, Iterate over all the strings and compare and see if the string is present. - O(N*L) space complexity. **Binary search** - backed by a `Red-Black Tree / balanced BST` - O(L × log n) Search Time Complexity, Each comparison in the tree takes O(L), ...
Bloom Filters : A Beginner’s Guide, where a `Bloom Filter` can be helpful: **Concept**: - Bloom Filter is a `probabilistic data, #### Bloom Filters ---------------------------, - Bloom Filter is a `probabilistic data structure` that uses bits to determine whether an item, - The drawback of the Bloom filter is we cannot delete elements from the list by just clearing the, . - The `set bits indexes` passed to the server will act as the `filter`. - It iterates over all the, Here is where a `Bloom Filter` can be helpful:

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

2.
By inception_95, history, 9 years ago, In English
Pull last of Hash function not working After watching this video [Algorithms Live! Episode 3 — Rolling Hashes and Bloom Filters](https://www.youtube.com/watch?v=rA1ZevamGDc), I tried to implement pull character from last by myself and applying it on this problem here: Problem: [1423. String Tale](http://acm.timus.ru/problem.aspx?space=1&num=1423) Code : [My code](https://ideone.com/M9a9w4) Is my implementation wrong? if so, what is wrong in this? or can anyone give a code that works like the same principle as the video and works perfectly? Thanks in advance.
After watching this video [Algorithms Live! Episode 3 — Rolling Hashes and Bloom Filters

Full text and comments »

  • Vote: I like it
  • -5
  • Vote: I do not like it

3.
By tehqin, history, 9 years ago, In English
Algorithms Live! Episode 3 - Bloom Filters and Rolling Hashes http://algorithms-live.blogspot.com/2017/01/episode-3-rolling-hashes-and-bloom.html
Algorithms Live! Episode 3 - Bloom Filters and Rolling Hashes

Full text and comments »

  • Vote: I like it
  • +51
  • Vote: I do not like it