Skip to content

Commit

Permalink
Add sequential Poisson sampling in README table (gstamatelat#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
gstamatelat committed Jul 22, 2020
1 parent 4ad8dd4 commit f15f80e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,15 @@ System.out.println(sample);

## Algorithms

| Class | Algorithm | Space | Weighted |
| :------------------- | :---------------------------- | :----- | :------- |
| `WatermanSampling` | Algorithm R by Waterman | `O(k)` | |
| `VitterXSampling` | Algorithm X by Vitter | `O(k)` | |
| `VitterZSampling` | Algorithm Z by Vitter | `O(k)` | |
| `LiLSampling` | Algorithm L by Li | `O(k)` | |
| `EfraimidisSampling` | Algorithm A-Res by Efraimidis | `O(k)` | ✔ |
| `ChaoSampling` | Algorithm by Chao | `O(k)` | ✔ |
| Class | Algorithm | Space | Weighted |
| :-------------------------- | :---------------------------- | :----- | :------- |
| `WatermanSampling` | Algorithm R by Waterman | `O(k)` | |
| `VitterXSampling` | Algorithm X by Vitter | `O(k)` | |
| `VitterZSampling` | Algorithm Z by Vitter | `O(k)` | |
| `LiLSampling` | Algorithm L by Li | `O(k)` | |
| `EfraimidisSampling` | Algorithm A-Res by Efraimidis | `O(k)` | ✔ |
| `ChaoSampling` | Algorithm by Chao | `O(k)` | ✔ |
| `SequentialPoissonSampling` | Algorithm by Ohlsson | `O(k)` | ✔ |

### 1 Algorithm R by Waterman

Expand Down

0 comments on commit f15f80e

Please sign in to comment.