forked from ard/ruoyi-api

‘liusuyi’
2023-12-13 a0d9d5ccd33aa09b4624fdfd2dd3269a9b82ba83
1
2
3
4
5
6
7
8
9
10
11
"use strict"
 
var createTree = require("../rbtree.js")
 
var t = createTree()
 
var s = Date.now()
for(var i=0; i<100000; ++i) {
  t = t.insert(Math.random(), Math.random())
}
console.log(Date.now() - s)