Comparing version 1.0.5 to 1.1.5
@@ -58,2 +58,5 @@ const SinglyLinkedList = require('./data-structures/linked-lists/SinglyLinkedList'); | ||
const DecisionTree = require('./algorithms/ml-statistical/decisionTrees'); | ||
const RandomizedQuickSort = require('./algorithms/sorting/randomizedQuickSort'); | ||
const RandomizedPrimalityTesting = require('./algorithms/randomized/randomizedPrimalityTesting'); | ||
const UtilityFunctions = require('./utils/utilityFunctions'); | ||
// Import other data structures and algorithms as needed | ||
@@ -120,3 +123,6 @@ | ||
DecisionTree, | ||
RandomizedQuickSort, | ||
RandomizedPrimalityTesting, | ||
UtilityFunctions, | ||
// Export other data structures and algorithms as well | ||
}; |
{ | ||
"name": "adv-dsa", | ||
"version": "1.0.5", | ||
"description": "JavaScript Data Structures and Algorithms Library", | ||
"version": "1.1.5", | ||
"description": "JS-DSA is a comprehensive collection of data structures and algorithms implemented in JavaScript. This project is designed to be a helpful resource for developers, students, and anyone interested in learning about data structures and algorithms through practical JavaScript examples.", | ||
"keywords": [ | ||
@@ -24,2 +24,2 @@ "data-structures", | ||
} | ||
} | ||
} |
@@ -83,7 +83,2 @@ ```bash | ||
| | |-- randomizedPrimalityTesting.js | ||
| |-- cryptography/ | ||
| |-- rsaEncryption.js | ||
| |-- rsaDecryption.js | ||
| |-- aesEncryption.js | ||
| |-- aesDecryption.js | ||
| | ||
@@ -179,7 +174,2 @@ |-- utils/ | ||
| | | |-- randomizedPrimalityTesting.test.js | ||
| | |-- cryptography/ | ||
| | |-- rsaEncryption.test.js | ||
| | |-- rsaDecryption.test.js | ||
| | |-- aesEncryption.test.js | ||
| | |-- aesDecryption.test.js | ||
| | ||
@@ -190,2 +180,2 @@ |-- docs/ | ||
|-- usage-examples.md | ||
``` | ||
``` |
318764
186
4227
106