Git Product home page Git Product logo

05-linked-list's Introduction

LinkedList Data Structure

version 1.0.0

This program follows a list data structure that allows easy access to modifying an array.

To access the module you will need chain LinkedList with the desired function.

.insertAtHead(value) takes in one parameter that inserts the value at the begining of an array.


arr1.LinkedList.insertAtHead(4);

console.log(arr1); // [4]```

.insertAtTail(value) takes in one parameter that inserts the value at the end of an array. 

```arr1 = [1, 2];

arr1.LinkedList.insertAtTail(4);

console.log(arr1); // [1, 2, 4]```


### LinkedList.find(value)

This method takes in one parameter and will search for the specified value. Will return null if value does not exist. 

```arr1 = [1, 2, 4];

var num = arr1.LinkedList.find(4);

console.log(num); // 4```


### LinkedList.remove(value) 

This method takes in one parameter and removes the specified value from the list. Will return null if no value is found.  

```arr1 = [1, 2, 4, 5, 6];

var num = arr1.LinkedList.remove(4);

console.log(arr1); // [1, 2, 5, 6]```


### LinkedList.pop()

This method removes the last item in a string. Will return null if array is empty. 

```arr1 = [1, 2, 4, 5, 6];

var num = arr1.LinkedList.pop();

console.log(arr1); // [1, 2, 4, 5]```


### linkedList.map()

This method will search through every value in an array.

```arr1 = [1, 2, 3, 4];

console.log(arr1.LinkedList.map());
// 1
// 2
// 3
// 4```


## Testing

Insure that npm is updated and Node is installed. To utilize the testing functionality for this package, type in ```npm run test``` in the terminal. 



Update Log: 
2:00pm - 5/6 methods are functioning 

Developers: Josiah Green, Judy Vu, Vinicio Sanchez

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.