Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gh47 readme typos #48

Merged
merged 4 commits into from
Jun 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ The data-structure is based on the observation that the [conga line data-structu

In the limit of arbitrarily many subsets, each new addition or point moved by a deletion will be in a singleton subset, and the algorithm will differ from nearest neighbors in only a couple of ways:

1. When we create the initial data structure, we use a conga line rather than
all nearest neighbors, to keep the in-degree of each point low, and
1. When we create the initial data structure, we use a conga line rather than all nearest neighbors, to keep the in-degree of each point low, and
2. When we insert a point, we don't bother updating other points' neighbors.

<table>
Expand All @@ -32,7 +31,7 @@ all nearest neighbors, to keep the in-degree of each point low, and
<td>$O(n)$ expected, $O(n^2)$ worst case</td>
</tr>
<tr>
<td><i>TTime per closest pair</i></td>
<td><i>Time per closest pair</i></td>
<td>$O(n)$</td>
</tr>
</table>
Expand Down
Loading