Linked List Cycle II

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next pointer. Internally, pos is used to denote the index of the node that tail's next pointer is connected to. Note that pos is not passed as a parameter.
Notice that you should not modify the linked list.

Example:

Input: 3->2->0->4->back to 2
Output: Cycle

Approach

Java

public class LinkedListCycleII {
    public static void main(String[] args) {
        ListNode head = new ListNode(3);
        head.next = new ListNode(2);
        ListNode temp = head.next;
        head.next.next = new ListNode(0);
        head.next.next.next = new ListNode(4);
        head.next.next.next.next = temp;
        ListNode cycle = detectCycle(head);
        if (cycle == null)
            System.out.println("No Cycle");
        else
            System.out.println("Cycle");
    }

    static public ListNode detectCycle(ListNode head) {
        ListNode cNode = hasCycle(head);
        if (cNode == null) {
            return null;
        } else {
            return firstNode(head, cNode);
        }

    }

    // find the first cycle node
    private static ListNode firstNode(ListNode lListNode cNode) {
        while (cNode != null) {
            if (l == cNode)
                return l;
            cNode = cNode.next;
            l = l.next;
        }
        return null;
    }

    // function to check if linked
    // list contains cycle or not
    private static ListNode hasCycle(ListNode head) {
        ListNode slow = head;
        ListNode fast = head;

        // move slow pointer one time and
        // fast pointer 2 times
        while (fast != null) {
            fast = fast.next;
            if (fast != null) {
                slow = slow.next;
                fast = fast.next;
                // if both slow and fast are
                // at same place then return true
                // means cycle is present
                if (slow == fast)
                    return slow;
            }
        }
        // no cycle
        return null;
    }
}

C++

#include <bits/stdc++.h>
using namespace std;
//Struture of  node
struct Node
{
    int data;
    Node *next;
    Node(int data)
    {
        this->data = data;
        this->next = NULL;
    }
};

//function to detect the cycle in linked list
Node *detectCycle(Node *head)
{
    if (head == NULL || head->next == NULL)
        return NULL;

    Node *slow = head, *fast = head;
    slow = slow->next;
    fast = fast->next->next;
    while (fast && fast->next)
    {
        if (slow == fast)
            break;
        slow = slow->next;
        fast = fast->next->next;
    }
    if (slow != fast)
        return NULL;
    slow = head;
    while (slow != fast)
    {
        slow = slow->next;
        fast = fast->next;
    }

    return slow;
}

int main()
{
    Node *head = new Node(3);
    head->next = new Node(2);
    Node *temp = head->next;
    head->next->next = new Node(0);
    head->next->next->next = new Node(4);
    head->next->next->next->next = temp;
    Node *cycle = detectCycle(head);
    if (cycle == NULL)
        cout << "No Cycle";
    else
        cout << "Cycle";
    return 0;
}


Make Two Arrays Equal by Reversing Sub-arrays

Given two integer arrays of equal length target and arr.
In one step, you can select any non-empty sub-array of arr and reverse it. You are allowed to make any number of steps.
Return True if you can make arr equal to target, or False otherwise.

Example 1:

Input: target = [1,2,3,4], arr = [2,4,1,3]
Output: true

Approach

Java

import java.util.Arrays;

public class MakeTwoArrays {
    public static void main(String[] args) {
        int[] target = { 1234 }, arr = { 2413 };
        System.out.println(canBeEqual(target, arr));
    }

    static boolean canBeEqual(int[] targetint[] arr) {
        int n = target.length, m = arr.length;

        // if length of both array is different
        // then return false
        if (n != m)
            return false;

        // sort both the arrays
        Arrays.sort(target);
        Arrays.sort(arr);
        for (int i = 0; i < n; i++) {

            // if current value of both array is not same then
            // return false
            if (target[i] != arr[i]) {
                return false;
            }
        }
        return true;
    }
}

C++

#include <bits/stdc++.h>
using namespace std;

bool canBeEqual(vector<int&targetvector<int&arr)
{
    int n = target.size(), m = arr.size();

    //if length of both array is different
    //then return false
    if (n != m)
        return false;

    //sort both the arrays
    sort(target.begin(), target.end());
    sort(arr.begin(), arr.end());
    for (int i = 0i < ni++)
    {

        //if current value of both array is not same then
        //return false
        if (target[i] != arr[i])
        {
            return false;
        }
    }
    return true;
}

int main()
{
    vector<inttarget = {1234}, arr = {2413};
    if (canBeEqual(targetarr))
        cout << "true";
    else
        cout << "false";
    return 0;
}


Maximum Score After Splitting a String

Given a string s of zeros and ones, return the maximum score after splitting the string into two non-empty substrings (i.e. left substring and right substring).
The score after splitting a string is the number of zeros in the left substring plus the number of ones in the right substring.

Example 1:

Input: s = "011101"
Output: 5 

Approach

Java

public class MaxScoreAfterSplittingString {
    public static void main(String[] args) {
        String s = "011101";
        System.out.println(maxScore(s));
    }

    static int maxScore(String s) {
        String str1str2;
        int n = s.length();
        int i = 0, max1 = Integer.MIN_VALUE, res;
        while (i < n - 1) {
            str1 = s.substring(0, i + 1);
            str2 = s.substring(i + 1, n);
            res = zeros(str1) + ones(str2);
            if (res > max1)
                max1 = res;
            i++;
        }
        return max1;
    }

    static int zeros(String s) {
        int cnt = 0;
        for (int i = 0; i < s.length(); i++)
            if (s.charAt(i) == '0')
                cnt++;
        return cnt;
    }

    static int ones(String s) {
        int cnt = 0;
        for (int i = 0; i < s.length(); i++)
            if (s.charAt(i) == '1')
                cnt++;
        return cnt;
    }

}

C++

#include <bits/stdc++.h>
using namespace std;
int zeros(string s)
{
    int cnt = 0;
    for (int i = 0i < s.size(); i++)
        if (s[i] == '0')
            cnt++;
    return cnt;
}

int ones(string s)
{
    int cnt = 0;
    for (int i = 0i < s.size(); i++)
        if (s[i] == '1')
            cnt++;
    return cnt;
}
int maxScore(string s)
{
    string str1str2;
    int n = s.size();
    int i = 0max1 = INT_MINres;
    while (i < n - 1)
    {
        str1 = s.substr(0i + 1);
        str2 = s.substr(i + 1n);
        res = zeros(str1) + ones(str2);
        if (res > max1)
            max1 = res;
        i++;
    }
    return max1;
}

int main()
{
    string s = "011101";
    cout << maxScore(s);
    return 0;
}


Interval List Intersections

You are given two lists of closed intervals, firstList and secondList, where firstList[i] = [starti, endi] and secondList[j] = [startj, endj]. Each list of intervals is pairwise disjoint and in sorted order.
Return the intersection of these two interval lists.
closed interval [a, b] (with a < b) denotes the set of real numbers x with a <= x <= b.
Example 1:
Input: firstList = [[0,2],[5,10],[13,23],[24,25]], secondList = [[1,5],[8,12],[15,24],[25,26]]
Output: [[1,2],[5,5],[8,10],[15,23],[24,24],[25,25]]

Approach

Java


import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class IntervalListIntersections {
    public static void main(String[] args) {
        int[][] firstList = { { 02 }, { 510 }, { 1323 }, { 2425 } };
        int[][] secondList = { { 15 }, { 812 }, { 1524 }, { 2526 } };
        int[][] inter = intervalIntersection(firstList, secondList);
        System.out.println(Arrays.deepToString(inter));
    }

    static public int[][] intervalIntersection(int[][] Aint[][] B) {
        int n = A.length, m = B.length;
        int i = 0, j = 0;
        List<int[]> res = new ArrayList<int[]>();
        while (i < n && j < m) {
            int low = Math.max(A[i][0], B[j][0]);
            int high = Math.min(A[i][1], B[j][1]);
            if (low <= high) {
                res.add(new int[] { low, high });
            }
            if (A[i][1] < B[j][1])
                i++;
            else
                j++;
        }
        return res.toArray(new int[0][2]);
    }

}

C++

#include <bits/stdc++.h>
using namespace std;

vector<vector<int>> intervalIntersection(vector<vector<int>> &A
            vector<vector<int>> &B)
{
    int n = A.size(), m = B.size();
    int i = 0j = 0;
    vector<vector<int>> res;
    while (i < n && j < m)
    {
        int low = max(A[i][0]B[j][0]);
        int high = min(A[i][1]B[j][1]);
        if (low <= high)
            res.push_back({lowhigh});
        if (A[i][1] < B[j][1])
            i++;
        else
            j++;
    }
    return res;
}

int main()
{
    vector<vector<int>> firstList = {{02}, {510}, {1323}, {2425}};
    vector<vector<int>> secondList = {{15}, {812}, {1524}, {2526}};
    vector<vector<int>> inter = intervalIntersection(firstListsecondList);
    cout << "[";
    for (int i = 0i < inter.size(); i++)
    {
        cout << "[";
        for (int j = 0j < inter[i].size(); j++)
        {
            cout << inter[i][j];
            if (j != inter[i].size() - 1)
                cout << ",";
        }
        cout << "]";
        if (i != inter.size() - 1)
            cout << ",";
    }
    cout << "]";
    return 0;
}


Check If a Word Occurs As a Prefix of Any Word in a Sentence

Given a sentence that consists of some words separated by a single space, and a searchWord.
You have to check if searchWord is a prefix of any word in sentence.
Return the index of the word in sentence where searchWord is a prefix of this word (1-indexed).
If searchWord is a prefix of more than one word, return the index of the first word (minimum index). If there is no such word return -1.
prefix of a string S is any leading contiguous substring of S.

Example 1:

Input: sentence = "i love eating burger", searchWord = "burg"
Output: 4

Approach

Java


import java.util.ArrayList;
import java.util.List;

public class CheckPrefixWord {
    public static void main(String[] args) {
        String sentence = "i love eating burger";
        String searchWord = "burg";
        System.out.println(isPrefixOfWord(sentence, searchWord));
    }

    static int isPrefixOfWord(String sString t) {
        List<Stringv = new ArrayList<String>();
        int n = s.length();
        int i = 0;
        while (i < n) {
            String str = "";
            while (i < n && s.charAt(i) == ' ')
                i++;
            while (i < n && s.charAt(i) != ' ') {
                str += s.charAt(i);
                i++;
            }
            i++;
            v.add(str);
        }
        int index = -1;
        for (int i1 = 0; i1 < v.size(); i1++) {
            String str = v.get(i1);
            int flag = 0;
            int len = str.length();
            if (len >= t.length()) {
                for (int j = 0; j < t.length(); j++) {
                    if (t.charAt(j) != str.charAt(j)) {
                        flag = 1;
                        break;
                    }
                }
                if (flag == 0) {
                    index = i1 + 1;
                    break;
                }
            }
        }
        return index;
    }

}

C++

#include <bits/stdc++.h>
using namespace std;

int isPrefixOfWord(string sstring t)
{
    vector<stringv;
    int n = s.size();
    int i = 0;
    while (i < n)
    {
        string str = "";
        while (i < n && s[i] == ' ')
            i++;
        while (i < n && s[i] != ' ')
        {
            str += s[i];
            i++;
        }
        i++;
        v.push_back(str);
    }
    int index = -1;
    for (int i = 0i < v.size(); i++)
    {
        string str = v[i];
        int flag = 0;
        int len = str.size();
        if (len >= t.size())
        {
            for (int j = 0j < t.size(); j++)
            {
                if (t[j] != str[j])
                {
                    flag = 1;
                    break;
                }
            }
            if (flag == 0)
            {
                index = i + 1;
                break;
            }
        }
    }
    return index;
}

int main()
{
    string sentence = "i love eating burger";
    string searchWord = "burg";
    cout << isPrefixOfWord(sentencesearchWord);
    return 0;
}