معرفی شرکت ها


node-functional-red-black-tree_1.0.1+20181105-4_all.deb


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

fully persistent balanced binary search tree - Node.js library
ویژگی مقدار
سیستم عامل Linux
توزیع Ubuntu Focal-20.04
مخزن Ubuntu universe all
نام بسته node-functional-red-black-tree
نام فایل بسته node-functional-red-black-tree_1.0.1+20181105-4_all.deb
نسخه بسته 1.0.1+20181105
انتشار بسته 4
معماری بسته all
نگهدارنده Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
تاریخ ساخت -
هاست سازنده -
نوع بسته .deb
آدرس صفحه اصلی https://github.com/mikolalysenko/functional-red-black-tree
مجوز -
حجم دانلود 12956
حجم نصب 54
Functional-red-black-tree is a fully persistent red-black tree written 100% in JavaScript. . Functional (or fully persistent) data structures allow for non-destructive updates. So if you insert an element into the tree, it returns a new tree with the inserted element rather than destructively updating the existing tree in place. Doing this requires using extra memory, and if one were naive it could cost as much as reallocating the entire tree. Instead, this data structure saves some memory by recycling references to previously allocated subtrees. This requires using only O(log(n)) additional memory per update instead of a full O(n) copy. . Some advantages of this is that it is possible to apply insertions and removals to the tree while still iterating over previous versions of the tree. Functional and persistent data structures can also be useful in many geometric algorithms like point location within triangulations or ray queries, and can be used to analyze the history of executing various algorithms. This added power though comes at a cost, since it is generally a bit slower to use a functional data structure than an imperative version. However, if your application needs this behavior then you may consider using this module. . This package provides functional-red-black-tree for use with Node.js - an event-based server-side JavaScript engine.


نیازمندی

مقدار نام
- nodejs


نحوه نصب


نصب پکیج deb node-functional-red-black-tree:

    sudo apt-get install node-functional-red-black-tree_1.0.1+20181105-4_all.deb


فایل ها

مسیرها
./usr/share/doc/node-functional-red-black-tree/README.html
./usr/share/doc/node-functional-red-black-tree/README.txt.gz
./usr/share/doc/node-functional-red-black-tree/TODO.Debian
./usr/share/doc/node-functional-red-black-tree/changelog.Debian.gz
./usr/share/doc/node-functional-red-black-tree/copyright
./usr/share/nodejs/functional-red-black-tree/package.json
./usr/share/nodejs/functional-red-black-tree/rbtree.js