francisco.gutierrez.91
BAN USER
- 5of 5 votes
AnswersYou have a link list with the following structure:
- francisco.gutierrez.91 in United States for Office
struct Node{ Node*next; Node*other; }
next pointer points to next node, but "other" pointer points to any node in the list, it can be itself or null.
you receive the header of a list with this structure.
you have to copy it(allocate new memory) , you cannot modify the structure, you can not modify the list you are given.| Report Duplicate | Flag | PURGE
Microsoft Software Engineer / Developer Linked Lists Algorithm Data Structures - 1of 3 votes
AnswersTell me about another project you have done, how did you do it? what are de difficult parts of it?, tell me everything
- francisco.gutierrez.91 in United States for Office| Report Duplicate | Flag | PURGE
Microsoft Experience - 0of 0 votes
AnswersTest a program that receives 3 inputs (the size of each edge of a triangle). the program should return :
- francisco.gutierrez.91 in United States for Office
1 for equilateral
2 for isoceles
3 for scaleno
0 for not triangle
you have to give several test cases for the program| Report Duplicate | Flag | PURGE
Microsoft Testing - 0of 0 votes
AnswersYou receive a string with the following characters: '{' '(' '[' ']' ')' '}'
- francisco.gutierrez.91 in United States for Office
the string can be any size, any number of each character.
You have to decide if the string is balanced, for examplo
{()[]} - correct
(({)}) - incorrect
{()) - incorrect| Report Duplicate | Flag | PURGE
Microsoft Algorithm - -1of 1 vote
AnswerMicrosoft recruiting final round:
- francisco.gutierrez.91 in United States for Office
Interview 1-Question 4:
Tell me about any software you like, how would you improve it? what bugs have you found?, how would you solve those bugs?| Report Duplicate | Flag | PURGE
Microsoft General Questions and Comments - 0of 0 votes
AnswersMicrosoft recruiting final round:
- francisco.gutierrez.91 in United States for Office
Interview 1-Question 3:
Tell me about your projects what problems have you had and how did you solve them| Report Duplicate | Flag | PURGE
Microsoft Experience - 1of 1 vote
AnswersMicrosoft recruiting final round:
- francisco.gutierrez.91 in United States for Office
Interview 1-Question 2:
How would you test an elevator| Report Duplicate | Flag | PURGE
Microsoft Testing - 0of 0 votes
AnswersMicrosoft recruiting final round:
- francisco.gutierrez.91 in United States for Office
Interview 1-Question 1:
Insert node in a sorted singly linked list| Report Duplicate | Flag | PURGE
Microsoft Linked Lists
It's not that simple, how do you know wich node in thenew list you have to point to
- francisco.gutierrez.91 January 24, 2013I think you are missing the case when the node you want to insert is lower than the head
- francisco.gutierrez.91 January 24, 2013you are missing some special cases, what if you have to insert at the head or at the end, and you don't update head pointer
- francisco.gutierrez.91 January 24, 2013your idea won't work for ({)} because at the end both of them would be 0 so according to you idea it is correct but actually it is incorrect
- francisco.gutierrez.91 January 24, 2013
Repbrandysolsen, Area Sales Manager at AMD
I am a Social butterflies who enjoy travel.Have fun doing this job and project an atmosphere that reflects Amazon ...
I did it in O(n) time and O(n) memory withouth modify the original list
- francisco.gutierrez.91 January 24, 2013