MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / linked_list.js

File linked_list.js

DSA Javascript/linked_list.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node {
2 // constructor
3 constructor(element) {
4 this.element = element;

Callers

nothing calls this directly

Calls 8

size_of_listMethod · 0.80
indexOfMethod · 0.80
insertAtMethod · 0.80
removeFromMethod · 0.80
isEmptyMethod · 0.45
addMethod · 0.45
printListMethod · 0.45
removeElementMethod · 0.45

Tested by

no test coverage detected