从三个和等于给定数的链表中寻找三元组的 Javascript 程序

原文:https://www . geesforgeks . org/JavaScript-program-for-find-a-tries-from-three-link-list-sum-等于给定的数字/

给定三个链表,比如 a,b 和 c,从每个链表中找出一个节点,这样节点的值之和等于一个给定的数。 例如,如果三个链表是 12- > 6- > 29、23- > 5- > 8 和 90- > 20- > 59,给定的数字是 101,那么输出应该是三倍的“6 5 90”。 在以下解决方案中,为了分析简单,假设所有三个链表的大小相同。以下解决方案也适用于不同大小的链表。

解决这个问题的一个简单方法是运行三个嵌套循环。最外面的循环从列表 a 中挑选一个元素,中间的循环从 b 中挑选一个元素,最里面的循环从 c 中挑选。最里面的循环还检查 a、b 和 c 的当前节点的值之和是否等于给定的数字。这种方法的时间复杂度将是 O(n^3). 排序可以用来将时间复杂度降低到 O(n*n)。以下是详细步骤。 1)列表 b 按升序排序,列表 c 按降序排序。 2)在对 b 和 c 进行排序后,逐个从列表 a 中选择一个元素,并通过遍历 b 和 c 来找到这一对。思路类似于 3 和问题的二次算法。

下面的代码只实现步骤 2。通过添加这里讨论的合并排序代码,可以轻松修改未排序列表的解决方案。

java 描述语言

<script>
// Javascript program to find a triplet from three linked lists with
// sum equal to a given number

/* Linked list Node*/
class Node
{
    constructor(d)
    {
        this.data = d;
        this.next = null;
    }
}

/* A function to check if there are three elements in a, b
      and c whose sum is equal to givenNumber.  The function
      assumes that the list b is sorted in ascending order and
      c is sorted in descending order. */
function isSumSorted(la,lb,lc,givenNumber)
{
    let a = la;

      // Traverse all nodes of la
      while (a != null)
      {
          let b = lb;
          let c = lc;

          // for every node in la pick 2 nodes from lb and lc
          while (b != null && c!=null)
          {
              let sum = a.data + b.data + c.data;
              if (sum == givenNumber)
              {
                 document.write("Triplet found " + a.data +
                                     " " + b.data + " " + c.data+"<br>");
                 return true;
              }

              // If sum is smaller then look for greater value of b
              else if (sum < givenNumber)
                b = b.next;

              else
                c = c.next;
          }
          a = a.next;
      }
      document.write("No Triplet found<br>");
      return false;
}

/*  Given a reference (pointer to pointer) to the head
       of a list and an int, push a new node on the front
       of the list. */
function push(head_ref,new_data)
{
    /* 1 & 2: Allocate the Node &
                  Put in the data*/
        let new_node = new Node(new_data);

        /* 3\. Make next of new Node as head */
        new_node.next = (head_ref);

        (head_ref) = new_node;

        return head_ref;

}

let headA =null;
headA = push (headA, 20) 
headA = push (headA, 4) 
headA = push (headA, 15) 
headA = push (headA, 10) 

// create a sorted linked list 'b' 2.4.9.10 
let headB = null;
headB = push (headB, 10) 
headB = push (headB, 9) 
headB = push (headB, 4) 
headB = push (headB, 2) 

// create another sorted 
// linked list 'c' 8.4.2.1 
let headC = null;
headC = push (headC, 1) 
headC = push (headC, 2) 
headC = push (headC, 4) 
headC = push (headC, 8) 

let givenNumber = 25

isSumSorted (headA, headB, headC, givenNumber) 

// This code is contributed by avanitrachhadiya2155
</script>

输出:

Triplet Found: 15 2 8

时间复杂度:链表 b 和 c 可以使用合并排序在 O(nLogn)时间内排序(参见)。第二步耗时 0(n * n)。所以整体时间复杂度是 O(nlogn) + O(nlogn) + O(nn) = O(nn)。 在这种方法中,链表 b 和 c 是先排序的,所以它们原来的顺序会丢失。如果我们想保留 b 和 c 的原始顺序,我们可以创建 b 和 c 的副本。

更多详情请参考整篇文章,从三个和等于给定数的链表中找出一个三元组!