top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Given a string and two words which are present in the string, find the minimum distance between the words

+2 votes
1,967 views

Given a string and two words which are present in the string, find the minimum distance between the words

Example:
"the brown quick frog quick the", "the" "quick"
Min Distance: 1

"the quick the brown quick brown the frog", "the" "brown"
Min Distance: 2

C/Java code would be helpful?

posted Oct 24, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote

Here is the C program for the above.

#include <stdio.h>
#include <string.h>

int main()
{
    char str[500];
    char word1[50];
    char word2[50];
    char *ptr = NULL;
    int i = 0, found1 = 0;

    printf("Enter the desired string :\n");
    fgets(str, sizeof(str), stdin);
    str[strlen(str) - 1] = '\0'; //over ride the new line.

    printf("\nEnter the two word one by one.\n");
    scanf("%s", word1);
    scanf("%s", word2);

    ptr = strtok(str, " ");
    while (ptr) {
        if (found1 == 0) {
            if (!strcmp(ptr, word1)) {
                found1 = 1;
                i = 0;
            }
        } else if (found1) {
            if (!strcmp(ptr, word2)) {
                   break;
            }
            i++;
        }

        ptr = strtok(NULL, " ");
    }

    printf("Min Distance: %d\n", i);

    return 0;
}
answer Nov 9, 2015 by Arshad Khan
0 votes

c++, implementation

int distanceTwoWordsInString(string str, string wordA, string wordB) {
    vector<int> positionA;
    vector<int> positionB;
    string sub;
    int i, start, wordIndex, indexA, indexB, distance;

    i = 0;
    start = 0;
    wordIndex = 0;
    while (i <= str.size()) {
        if (i == str.size() || str[i] == ' ') {
            sub = str.substr(start, i - start);
            start = i + 1;
            if (sub.compare(wordA) == 0) positionA.push_back(wordIndex);
            if (sub.compare(wordB) == 0) positionB.push_back(wordIndex);
            wordIndex++;
            if (i == str.size()) break;
        }
        i++;
    }

    if (positionA.size() == 0 || positionB.size() == 0) return -1;

    indexA = 0;
    indexB = 0;
    distance = wordIndex;
    while (indexA < positionA.size() && indexB < positionB.size()) {
        if (positionA[indexA] > positionB[indexB]) {
            distance = min(distance, positionA[indexA] - positionB[indexB]);
            indexB++;
        } else if (positionA[indexA] < positionB[indexB]) {
            distance = min(distance, positionB[indexB] - positionA[indexA]);
            indexA++;
        } else {
            indexA++;
        }
    }

    return distance;
}
answer Oct 30, 2015 by Mohammed Hussain
Similar Questions
+2 votes

For
e.g 1. "hello how are you" - distance between "hello" and "you" is 3.
e.g 2. "hello how are hello you" - distance is 1
e.g 3. "you are hello" - distance is -1. Order of "hello" and "you" should be preserved.
e.g 4. "hello how are hello" - distance is -1 since "you" did not occur even once.

+1 vote

Given a string and dictionary of words, form a word by removing minimum number of characters.
Characters can be removed in-order only.

+4 votes

Given a dictionary of strings and another string find out if the string is an exact match to some words in the dictionary or varies at most in only one place of some word of the dictionary?

+8 votes

Convert the given string into palindrome with minimum number of appends(at end of the given string). O(n) algorithm will be appreciated ??

Input :=> Malayal
Output :=> Malayalam

+2 votes

Write a C program which accept two strings and print characters in second string which are not present in first string?

Example:
String 1: apple
String 2: aeroplane

output:
ron

...