Microsoft Interview Questions and Answers


  1. How could you determine if a linked list contains a cycle in it, and, at what node the cycle starts?

    There are a number of approaches. The approach I shared is in time N (where N is the number of nodes in your linked list). Assume that the node definition contains a boolean flag, bVisited.
    struct Node
    {
    ...
    bool bVisited;
    };

    Then, to determine whether a node has a loop, you could first set this flag to false for all of the nodes:
    // Detect cycle
    // Note: pHead points to the head of the list (assume already exists)
    Node *pCurrent = pHead;
    while (pCurrent)
    {
    pCurrent->bVisited = false;
    pCurrent = pCurrent->pNext;
    }

    A much better approach was submitted by 4Guys visitor George R., a Microsoft interviewer/employee. He recommended using the following technique, which is in time O(N) and space O(1).

    Use two pointers.

    // error checking and checking for NULL at end of list omitted
    p1 = p2 = head;

    do {
    p1 = p1-gt;next;
    p2 = p2-gt;next->next;
    } while (p1 != p2);

    p2 is moving through the list twice as fast as p1. If the list is circular, (i.e. a cycle exists) it will eventually get around to that sluggard, p1.

  2. How would you reverse a doubly-linked list?

    This problem isn't too hard. You just need to start at the head of the list, and iterate to the end. At each node, swap the values of pNext and pPrev. Finally, set pHead to the last node in the list.

    Node * pCurrent = pHead, *pTemp;
    while (pCurrent)
    { pTemp = pCurrent-gt;pNext;
    pCurrent-gt;pNext = pCurrent->pPrev;
    pCurrent-gt;pPrev = temp;

    pHead = pCurrent;

    pCurrent = temp;
    }

  3. Assume you have an array that contains a number of strings (perhaps char * a[100]). Each string is a word from the dictionary. Your task, described in high-level terms, is to devise a way to determine and display all of the anagrams within the array (two words are anagrams if they contain the same characters; for example, tales and slate are anagrams.)

    Begin by sorting each element in the array in alphabetical order. So, if one element of your array was slate, it would be rearranged to form aelst (use some mechanism to know that the particular instance of aelst maps to slate). At this point, you slate and tales would be identical: aelst.
    Next, sort the entire array of these modified dictionary words. Now, all of the anagrams are grouped together. Finally, step through the array and display duplicate terms, mapping the sorted letters (aelst) back to the word (slate or tales).


No comments:

Post a Comment