-
Notifications
You must be signed in to change notification settings - Fork 5.2k
String
Mission Peace edited this page Oct 16, 2016
·
7 revisions
- Given two strings tells if anagram of first is substring of another - AnagramOfFirstAsSubstring.java
- Cycle leader iteration - CycleLeaderIteration.java
- Given alternate digits and numbers, move them so that all digits are on one side and numbers on other side - InPlaceTransformationOfString.java
- Lexicographic rank of a string - LexicographicRankInPermutation.java
- Given a string, find longest palindromic substring in this string - LongestPalindromeSubstring.java
- Given a string find longest substring without repetition of characters - LongestSubstringWithoutRepetingCharacter.java
- Given an input string S write a function which returns true if it satisfies S = nT - NTMatch.java
- Given list of strings, print them in groups if they are anagrams of each other - PrintAnagramTogether.java
- Rabin karp substring search - RabinKarpSearch.java
- Given a string, rearrange characters in string so that characters are at least d distance away from repeated characters - RearrangeDuplicateCharsdDistanceAway.java
- Run length encoding - RunLengthEncoding.java
- Given two strings, find smallest window in first string which contains all characters of second string - SmallestWindowContaingAllCharacters.java
- KMP substring search - SubstringSearch.java
- Wild card searching - WildCardSearch.java
- Remove consecutive duplicate elements in character array - RemoveConsecutiveDuplicate.java
- Print all combinations of word abbreviation WordAbbreviationCombination.java
- Longest substring with at most k distinct characters - LongestSubstringWithKDistinctCharacters.java
- Design an algorithm to encode and decode list of strings - StringEncoderDecoder.java
- Given a string tell if it is a palindrome. Ignore cases and non alphanumeric characters - ValidPalindrome.java
- Valid word abbreviation - ValidWordAbbreviation.java
- Find palindrome pairs in array of unique words - PalindromePair.java