Skip to content

Commit 66f0b80

Browse files
update README.md
1 parent 979d18e commit 66f0b80

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ for address in process.search_by_value(int, 4, target_value, scan_type = ScanTyp
6060
print("Found address:", address)
6161
```
6262

63-
**Note:** The scan types `EXACT_VALUE` and `NOT_EXACT_VALUE` uses [KMP (Knuth–Morris–Pratt) Algorithm](https://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm), that has completixy O(n + m) — `n` is the size of the memory page and `m` is the value length — to speed up the search process. The other scan types use the [brute force algorithm](https://en.wikipedia.org/wiki/Brute-force_search), which is O(n * m), so the search may be slower depending on the length of the target value.
64-
6563
You can also search for a value within a range:
6664
```py
6765
for address in process.search_by_value_between(int, 4, min_value, max_value, ...):

0 commit comments

Comments
 (0)