How to use Queue In Javascript

Using a queue, iteratively generate subsequences by appending each character to existing subsequences. Initially, the queue contains an empty string. For each character in the string, append it to each string in the queue and enqueue the result.

Example:

JavaScript
function printSubsequences(str) {
  const queue = [''];
  for (const char of str) {
    const size = queue.length;
    for (let i = 0; i < size; i++) {
      queue.push(queue[i] + char);
    }
  }
  console.log(queue);
}

printSubsequences("abcd");

Output
[
  '',     'a',   'b',
  'ab',   'c',   'ac',
  'bc',   'abc', 'd',
  'ad',   'bd',  'abd',
  'cd',   'acd', 'bcd',
  'abcd'
]




JavaScript Program to Print all Subsequences of a String

A subsequence is a sequence that can be derived from another sequence by deleting zero or more elements without changing the order of the remaining elements. Subsequences of a string can be found with different methods here, we are using the Recursion method, Iteration method and Bit manipulation method.

Example: The example shows the input string and the corresponding output

Input: 'abc'

Output:
abc 
ab 
ac 
a 
bc 
b 
c

Table of Content

  • Method 1: Using Recursion
  • Method 2: Using Iteration
  • Method 3: Using Bit Manipulation
  • Method 4: Using Queue

Similar Reads

Method 1: Using Recursion

We can recursively generate subsequences by including or excluding each character in the string.Create a function generateSubsequence with two parameters input and output.Check input.length==0 by using if condition.Here, value of inputString= “abc”.Then, call the function generateSubsequence....

Method 2: Using Iteration

We can use iterative methods to generate all possible combinations of characters in the string.Create a function generateSubsequence with one parameter input.Inside the function store the length of the input in variable length. Iterate and check conditions by using for loop and if condition respectively. Here, the value of inputString= “abc”. Then, call the function generateSubsequence with argument inputstring to get output....

Method 3: Using Bit Manipulation

We can use bit manipulation to represent the inclusion or exclusion of each character in the subsequence.Create a function generateSubsequence with one parameter input.Inside the function store the length of the input in variable length. Iterate and check conditions by using for loop and if condition respectively. Here,the value of inputString= “abc”. Then, call the function generateSubsequence with argument inputstring to get output....

Method 4: Using Queue

Using a queue, iteratively generate subsequences by appending each character to existing subsequences. Initially, the queue contains an empty string. For each character in the string, append it to each string in the queue and enqueue the result....

Contact Us