grigory-rechistov / interpreters-comparison

Sample programs for comparison of different VM interpretation techniques
BSD 3-Clause "New" or "Revised" License
30 stars 11 forks source link

Add new benchmarks to the Program suite #4

Closed grigory-rechistov closed 8 years ago

grigory-rechistov commented 8 years ago

Add one to three programs to the suite.

  1. Calculate an approximation of square root of given number by Newton-Raphson method
  2. Sort an array by any known method (bubble, quicksort, heapsort etc)
  3. Looking for a substring match inside a given string

Additionally, any other computationally-intensive algorithm will be good as well

sash-tsvet commented 8 years ago

Attach it to me please

grigory-rechistov commented 8 years ago

The solution is in https://github.com/grigory-rechistov/interpreters-comparison/tree/sash-tsvet-task-04