"Longest Substring Without Repeating Characters" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "Longest Substring Without Repeating Characters" answered properly. Developers are finding an appropriate answer about Longest Substring Without Repeating Characters related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like Longest Substring Without Repeating Characters. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on Longest Substring Without Repeating Characters. 

longest substring without repeating characters

By ujjwal sotraujjwal sotra on Jun 29, 2021
#include <bits/stdc++.h>

using namespace std;

int main()
{
    string s;
    cin>>s;
    int l=s.length();
    map<char,int>mp;
    int mx=INT_MIN;
    int i=0;
    int j=0;
    while(j<l)
    {
        mp[s[j]]++;
        if(int(mp.size())<j-i+1)
        {
          while(int(mp.size())<j-i+1)
          {
              mp.erase(s[i]);
              i++;
          }
          j++;
        }
        else if(int(mp.size())==j-i+1)
        {
            mx=max(mx,j-i+1);
            j++;
        }
    }
    cout<<mx;
    return 0;
}

Add Comment

0

All those coders who are working on the C++ based application and are stuck on Longest Substring Without Repeating Characters can get a collection of related answers to their query. Programmers need to enter their query on Longest Substring Without Repeating Characters related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about Longest Substring Without Repeating Characters for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of Longest Substring Without Repeating Characters while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "Longest Substring Without Repeating Characters". Visit this developer's friendly online web community, CodeProZone, and get your queries like Longest Substring Without Repeating Characters resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "Longest Substring Without Repeating Characters"

View All C++ queries

C++ queries related to "Longest Substring Without Repeating Characters"

Longest Substring Without Repeating Characters Find the two non-repeating elements in an array of repeating elements/ Unique Numbers 2 Find Missing And Repeating c++ check substring find all occurrences of a substring in a string c++ c++ check if string contains substring std::substring c++ substring check if a string is substring of another c++ creating substring in c++ find all the palindrome substring in a given string find substring in string c++ c++ erase substring substring in c++ convert all characters in string to uppercase c++ convert characters to lowercase c++ finding no of unique characters in a string c++ how to remove maximum number of characters in c++ cin,ignore lists occurrences of characters in the string c++ inserting characters in a string c++ why cin take more characters then the size of array in C++ Write a c++ loop to read n characters from the keyboard and store them in the vector v. Write a function called clean that takes a C++ string as input and removes any characters in the string that are not letters except for space blanks. sort n characters in descending order c++ how to get characters through their ascii value in c++ c++ program to count number of characters of words in a file using stringstream c++ get string between two characters c++ delete printed characters removing repeated characters in a string c++ how to install c++ compiler without admin reverse string efficient in cpp without using function c++ get input without loop c++ print vector without loop factorial c++ without using function reverse string in c++ without using function c++ string to integer without stoi android emulator wifi connected without internet pow without math.h error: invalid use of template-name without an argument list print the elements of the array without using the [] notation in c++ how to concatenate two big strings without using strcat in c++ how to find a integer is how many times repeated in C++ without for loop

Browse Other Code Languages

CodeProZone