Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

* I NEED THIS CODE TO BE ABLE TO WORK IN JSFIDDLE. I NEED THE HTML ASPECT AND THE JAVASCRIPT ASPECT. HERE IS THE LINK

* I NEED THIS CODE TO BE ABLE TO WORK IN JSFIDDLE. I NEED THE HTML ASPECT AND THE JAVASCRIPT ASPECT. HERE IS THE LINK TO JSFIDDLE: jsfiddle.net

In Javascript we are going to create a Doubly Linked List. If you know your object oriented code this will be relatively straightforward. Your List will be made up of Nodes. Each node will have the following properties;

Node Properties

id - A simple id for the node itself,

content - A value (String)

next - A pointer to the next node in the List (null for the last node).

last - A pointer to the previous node in the List

List Properties

head - Pointer to the first node in the list

length - Number of nodes in the list

Here is a simple Javascript code that represents the concept using the analogy of a chain and links. It should be a good demonstration for you to use in writing your code. https://jsfiddle.net/reaglin/q46obht6/ This code should help you get started, but you should build your List and Node objects from scratch.

Next - you will populate your list with 5 nodes with content A, B, C, D, E. You will also create a print function for the list that will print the nodes in order. You will need to create some functions to support this functionality.

You will now need to write an interface to allow the user to add nodes to the end of the list. There should be a single text box to enter the Node content, and a button "Add to List". When the user adds a node to the list, then you should add the node with the content to the end of the list and print the new list.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions

Question

Describe the regional influences of each of the following sauces:

Answered: 1 week ago

Question

What is the Definition for Third Normal Form?

Answered: 1 week ago

Question

Provide two examples of a One-To-Many relationship.

Answered: 1 week ago