Advertisement
ListonFermi

Week 13

Mar 19th, 2024 (edited)
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | Source Code | 0 0
  1. // function recursiveBinarySearch(a,t){
  2.  
  3.  
  4.  
  5. // let l=0, r= a.length-1
  6. // m= Math.floor( (l+r)/2 )
  7.  
  8. // if(a[m]===t){
  9. // return m
  10. // }
  11.  
  12. // if(t<a[m]){
  13.  
  14. // return recursiveBinarySearch(a,t)
  15. // }else{
  16. // return recursiveBinarySearch(a,t)
  17. // }
  18.  
  19. // }
  20.  
  21. // console.log(recursiveBinarySearch([1,2,3,4,5],6));
  22.  
  23. class Node{
  24. constructor(val){
  25. this.val=val
  26. this.next= null
  27. this.prev=null
  28. }
  29. }
  30.  
  31. class LinkedList{
  32. constructor() {
  33. this.head=null
  34. this.tail=null
  35. this.size=0
  36. }
  37.  
  38. prepend(val){
  39. let node= new Node(val)
  40. if(this.size){
  41. node.next=this.head
  42. this.tail.next=node
  43. }else{
  44. this.tail=node
  45. }
  46. this.head=node
  47. this.size++
  48. }
  49.  
  50. }
  51.  
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement