Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Assignment I need a working jsfiddle please Html and Javascript needs to be sepe

ID: 3796041 • Letter: A

Question

Assignment

I need a working jsfiddle please

Html and Javascript needs to be seperate

You are going to create a Queue. (alternately you can create a list and simply implement enqueue and dequeue functions in the List - that will technically make it a queue). You will fill the first list with numbers consecutively numbered from 2 to n where n is entered by the user (we will call this Q1). When creating your Queue object use the correct function names for enqueue and dequeue functions. Again - sorry, cannot use an Javascript array in your implementation - you need to implement enqueue and dequeue.

Create a second empty Queue Q2.

Once you have the first Queue filled we are going to use a technique called Sieve of Eratosthenes which uses first queue to fill the second queue.

Here is the algorithm;

1. Dequeue 1st element in Q1 (which will be 2). You will need to remember the value of this element - we will call it X.

2. Enqueue this element into Q2 (Q2 is the list of primes)

3. Iterate and Dequeue each successive element of Q1

     If the value is divisible by X, go to the next element

     if the value is not divisible by X enqueue back onto Q1, go to the next element.

4. Print the values of Q1 and Q2 after each time through.

5. When done go back to the beginning of the Q1 and repeat steps 1-3 (the first value will be 3 the second time around)

Sample output with input 10

Iteration 0: Q1 = 2 3 4 5 6 7 8 9 10, Q2 = ,

Iteration 1: Q1 = 3 5 7 9, Q2 = 2

Iteration 2: Q1 = 5 7, Q2 = 2 3

Iteration 3: Q1 = 7, Q2 = 2 3 5

Iteration 4: Q1 = , Q2 = 2 3 5 7

<lengthoffirstqueue; m++)="" {="" var="" value="firstQueue.currentElem(m);" console.log("element="" value:"="" +="" value)="" if(value%firstelem="=" 0)="" removed:"="" firstqueue.dequeue(m));="" }="" displayqueue(firstqueue,="" counter,="" 1)="" displayqueue(secondqueue,="" 2)="" counter++;="" function="" displayqueue(queue_list,="" itr,="" qnumber)="" x="" ;="" if(qnumber="=" +itr+":="" q1="; else x = " ,q2=" for(j=0; j=a.length&&(a=a.slice(index),b=0); console.log(" at="" dequeue:"="" +c);="" return="" c="" };="" this.peek="function()" 0

Explanation / Answer

Hello,

Here goes the required javascript code for the problem

Code:

var q1=[9,8,7,6,5,4,3,2];
   var q2=[];
   var x;
   while(q1.length>0){
       x=q1.pop();
       for(var i=0;i<q1.length;i++){
           if(q1[i]%x==0){
               q1.splice(i,1);
           }
       }
       q2.push(x);
   }
  
   console.log(q2);

You can insert it into any plunkr or fiddle and it works without any changes.

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote