Problem
Brute force approach:
TC: O(N^2), SC: O(256) which is constant
Note: This will lead to TLE
class Solution { public String minWindow(String s, String t) { int min = Integer.MAX_VALUE; int start =-1; int end = -1; //generating all possible substrings and returning the smallest substring having //all the character of string t for(int i =0;i<s.length int arr new all the asci characters with count of character in t for k="0;k<t.length();k++){" j="i;j<s.length();j++){" if at s is also present increase>0){ count++; } arr[s.charAt(j)]--;//decrease the frequency of s.charAt(j) by 1 in arr if(count ==t.length()){// if count == length of t we have found one potential substring if(min> j-i+1){ min = j-i +1; start = i; end = j; } break;// break out as there is no need to propagate further in the current iteration } } } if(start ==-1 || end ==-1) return "";// if not found return s.substring(start,end+1);// else } } </s.length>
Optimal approach:
TC: O(n) , SC:O(256) wich is constant
// this intuition will require solving such problems as much as possible class Solution { public String minWindow(String s, String t) { int left=0,right=0; int min = Integer.MAX_VALUE; int count =0; int arr[] = new int[256]; // has table for keeping count of characters // keeping track of start and end index int start =-1; int end = -1; for(int i=0;i<t.length arr while char c="s.charAt(right);" if>0){ // if the character is part of t, then increment count count++; } arr[c]--;// decrease the count of the character in the hash table once it is taken into consideration while(count ==t.length()){ // if count == t.size() we have found a potential window if(min > right-left+1){ min = right-left+1; //update the start and end accordingly start = left; end = right; } arr[s.charAt(left)]++;//since we are removing this character from window and increasing the left pointer to point to next character after this, there will be one less //character that is not part of the t if(arr[s.charAt(left)]>0){ // if after doing +1 for arr[s.charAt(left)] character, if it become positive then it will mean that this was part of t, and now we will have to look for this character in the next window count--; // since this was part of t, then count should decrement by 1 } left++; } right++; } if(start ==-1 || end ==-1) return ""; return s.substring(start,end+1); } } </t.length>
The above is the detailed content of Minimum window substring. For more information, please follow other related articles on the PHP Chinese website!

Start Spring using IntelliJIDEAUltimate version...

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

Java...

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Notepad++7.3.1
Easy-to-use and free code editor