-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
96 lines (76 loc) · 2.18 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
output:
github_document:
html_preview: false
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r results='asis', echo = FALSE, eval = TRUE}
d <- read.dcf("DESCRIPTION")
```
```{r results="asis", echo = FALSE, eval = TRUE}
title <- d[colnames(d) == "Title"]
cat(c("# ", paste(trimws(strsplit(title, "\n")[[1]]), collapse = " ")))
```
[![check](https://github.com/randy3k/collections/actions/workflows/check.yaml/badge.svg)](https://github.com/randy3k/collections/actions/workflows/check.yaml)
[![codecov](https://codecov.io/gh/randy3k/collections/branch/master/graph/badge.svg?token=ummdWzk2eR)](https://codecov.io/gh/randy3k/collections)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/collections)](https://cran.r-project.org/package=collections)
[![](https://cranlogs.r-pkg.org/badges/grand-total/collections)](https://cran.r-project.org/package=collections)
Github: [https://github.com/randy3k/collections](https://github.com/randy3k/collections)
Documentation: [https://randy3k.github.io/collections/](https://randy3k.github.io/collections/)
```{r results="asis", echo = FALSE, eval = TRUE}
cat(d[colnames(d) == "Description"])
```
## Installation
You can install the released version of collections from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("collections")
```
Install the latest development version using
```r
devtools::install_github("randy3k/collections")
```
## Example
```{r}
library(collections, warn.conflicts = FALSE)
```
Queue
```{r}
q <- queue()
q$push(1)$push(2)
q$pop()
```
Stack
```{r}
s <- stack()
s$push(1)$push(2)
s$pop()
```
Deque
```{r}
dq <- deque()
dq$push(1)$pushleft(2)
dq$pop()
```
Priority Queue
```{r}
pq <- priority_queue()
pq$push("not_urgent")
pq$push("urgent", priority = 2)
pq$push("not_as_urgent", priority = 1)
pq$pop()
pq$pop()
pq$pop()
```
Dictionary. Comparing to R envrionments, `dict()` does not [leak memory](https://r-lib.github.io/fastmap/#memory-leak-examples) and supports various other types of keys.
```{r}
d <- dict()
e <- new.env()
d$set(e, 1)$set(sum, 2)$set(c(1L, 2L), 3)
d$get(c(1L, 2L))
```
Ordered Dictionary
```{r}
d <- ordered_dict()
d$set("b", 1)$set("a", 2)
d$as_list()
```