Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

import java.io.*; import java.util.*; /** * LongestCommonSubsequence is a program that will determine the longest string that is * a subsequence of two input strings.

import java.io.*; import java.util.*;

/** * LongestCommonSubsequence is a program that will determine the longest string that is * a subsequence of two input strings. This program applies a brute force solution technique. * * @author Charles Hoot * @version 4.0 */ public class LongestCommonSubsequence {

public static void main(String args[]) { BagInterface toCheckContainer = null;

Scanner input; input = new Scanner(System.in);

System.out.println("This program determines the longest string that is a subsequence of two input string."); System.out.println("Please enter the first string:"); String first = input.next();

System.out.println("Please enter the second string:"); String second = input.next();

// ADD CODE HERE TO CREATE THE BAG WITH THE INITIAL STRING

System.out.println("The strings to check are: " + toCheckContainer); String bestSubsequence = new String("");

// ADD CODE HERE TO CHECK THE STRINGS IN THE BAG System.out.println("Found " + bestSubsequence + " for the longest common subsequence");

}

/** * Determine if one string is a subsequence of the other. * * @param check See if this is a subsequence of the other argument. * @param other The string to check against. * @return A boolean if check is a subsequence of other. */ public static boolean isSubsequence(String check, String against) { boolean result = false;

// ADD CODE HERE TO CHECK IF WE HAVE A SUBSEQUENCE return result; } }

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

Step: 3

blur-text-image

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

Relational Database And Transact SQL

Authors: Lucy Scott

1st Edition

1974679985, 978-1974679980

More Books

Students also viewed these Databases questions

Question

5. List the forces that shape a groups decisions

Answered: 1 week ago

Question

4. Identify how culture affects appropriate leadership behavior

Answered: 1 week ago