4GuysFromRolla.com - All this and it counts as work!
ASP Articles Web Technology Message Board
Search 4Guys! Web Chat
ASPFAQs.com Feedback

Site Index
  -Recent Articles
  -All Articles | ASP.NET Articles
  -ASP Coding Tips
  -ASP F.A.Q. | ASPFAQs.com
  -ASP Resources | ASP.NET Resources
  -Related Web Technologies
  -Search
  -User Tips!

Please Visit our Partners
Got PDF?

SoftArtisans Professional Server Controls
Where does it hurt?
FileTransfers
Excel Reports & Charts
Transactional File Mgt.
System Administration
Scalability or All Over
Check out SoftArtisans


Search
Search the Site

Resources
Sections:
  -Book Reviews | Sample Chapters
  -Commonly Asked MessageBoard Questions
  -Headlines from ASPWire.com
  -JavaScript Tutorials
  -Newsletter
  -Official Docs
  -Security
  -Stump the SQL Guru!
  -Web Hosts | Free Web Hosting
  -Web Message Board
  -XML

Columnists:
  -Bart Silverstein
  -Christopher Miller
  -Ian Stallings
  -Julian Sitkewich
  -Mike Shaffer
  -Nannette Thacker
  -Ryan S.

Information:
  -Advertise
  -Feedback
  -Author an Article

Be a Commerce Partner:
  -Accept Credit Cards
  -Automate your FAQs
  -Rent DVDs Online
  -Digital Content
  -Buy Linux Products
  -Training Solutions
  -FREE IT Consulting

Windows Internet Technology
Check out these Web sites for articles, tutorials, FAQs, and code on ASP and related technologies!
  -15Seconds.com
  -ASP101.com
  -ASPFAQs.com
  -ASPMessageboard.com
  -ASPWatch.com
  -ASPWire.com
  -Swynk.com

[Complete List of Sites]

Web Technology Internet.com - The Internet and IT Network
Share this Article with a Friend! Print this Page!
Microsoft Interview Questions & Answers


I recently visited Microsoft's Silicon Valley campus and interviewed with the Hotmail group. If you've never had a Microsoft interview, realize that they are very different than the standard interview. You won't be asked any of those questions like, "What is your greatest weakness," or, "Where do you want to be in five years?" Rather, a Microsoft interview typically contains a number of brain teasers and coding questions. In fact, you can read interview questions from my internship interviews.

Here are the questions I was asked, accompanied with the answers right below the question! So, once you reach the end of the question, don't read any further unless you want to immediately know the answer! Anyway, here goes:

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

Answer: 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;

}

Then, to determine whether or not a cycle existed, loop through each node. After visiting a node, set bVisited to true. When you first visit a node, check to see if the node has already been visited (i.e., test bVisited == true). If it has, you've hit the start of the cycle!


bool bCycle = false;

pCurrent = pHead;

while (pCurrent && !pCycle)

{

  if (pCurrent->bVisited == true)

    // cycle!

    pCycle = true;

  else

  {

    pCurrent->bVisited = true;

    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->next;

	p2 = p2->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.

Thanks George!


Question: How would you reverse a doubly-linked list?

Answer: 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->pNext;

  pCurrent->pNext = pCurrent->pPrev;

  pCurrent->pPrev = temp;

  

  pHead = pCurrent;



  pCurrent = temp;

}


Question: 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.)

Answer: 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).


Question: Given the following prototype:

int compact(int * p, int size);

write a function that will take a sorted array, possibly with duplicates, and compact the array, returning the new length of the array. That is, if p points to an array containing: 1, 3, 7, 7, 8, 9, 9, 9, 10, when the function returns, the contents of p should be: 1, 3, 7, 8, 9, 10, with a length of 5 returned.

Answer: A single loop will accomplish this.


int compact(int * p, int size)

{

  int current, insert = 1;

  for (current=1; current < size; current++)

    if (p[current] != p[insert-1])

    {

      p[insert] = p[current];

      current++;

      insert++;

    } else

      current++;

}

Happy Programming!



Powered by XCache

Windows Internet Technology | ASP Articles | ASPMessageboard.com | ASPFAQs.com | Advertise | Feedback | Awards | Author an Article


Copyright 2001 internet.com Corp. All Rights Reserved.
Legal Notices,  Licensing, Reprints, & Permissions,  Privacy Policy.
http://www.internet.com/