ralgorithms 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.md +7 -2
  2. data/bin/benchmark +3 -0
  3. metadata +2 -1
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Algorithms implemented in Ruby
4
4
 
5
- ## Test
5
+ ## Test/Benchmark
6
6
 
7
- ruby sorting/test_helper.rb
7
+ bin/benchmark
8
8
 
9
9
  ## Sorting algorithms:
10
10
 
@@ -18,3 +18,8 @@ Algorithms implemented in Ruby
18
18
  * merge sort: Sorting::MergeSort.sort
19
19
  * quick sort: Sorting::QuickSort.sort
20
20
  * intro sort: Sorting::IntroSort.sort
21
+
22
+ ## Search algorithms:
23
+
24
+ * skip list: Searching::SkipList
25
+
data/bin/benchmark ADDED
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+ ruby lib/sorting/test_helper.rb
3
+ ruby lib/searching/skip_list.rb
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ralgorithms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -17,6 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - bin/benchmark
20
21
  - README.md
21
22
  homepage: https://github.com/qianthinking/ralgorithms
22
23
  licenses: []