微软在11月中旬的Connect()研讨会中公布了一系列 2015年的发展规划,今天在MSDN Blog上看到了一篇比较全的相关文章合集,这里转录一下,感兴趣的朋友可以看看。
Announcements
Opening up Visual Studio and .NET to Every Devel...
分类:
Web程序 时间:
2014-11-30 21:17:37
阅读次数:
333
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
Follow up:
Did you use extra space?
A straight forward solution using O(mn) space is probably a bad ide...
分类:
其他好文 时间:
2014-11-30 17:00:32
阅读次数:
223
描述As is known to all,if you throw a coin up and let it droped on the desk there are usually three results. Yes,just believe what I say ~it can be the ...
分类:
其他好文 时间:
2014-11-30 00:21:50
阅读次数:
149
Linked List CycleGiven a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?SOLUTION 1:经典快慢指针问题。如果存在环...
分类:
其他好文 时间:
2014-11-30 00:15:56
阅读次数:
262
ReleaseNotesRelease Notes.UpdatedAug 12, 2014bytheraysm...@gmail.comIntroductionThis page keeps the most up-to-date release notes.Tesseract release no...
分类:
其他好文 时间:
2014-11-29 20:14:01
阅读次数:
474
是这题的变种对一棵树从最后一次开始层次遍历,并返回结果。例如:Given binary tree{3,9,20,#,#,15,7}, 3 / \ 9 20 / \ 15 7return its bottom-up level order traversal as:[ ...
分类:
其他好文 时间:
2014-11-29 15:57:28
阅读次数:
251
Path SumGiven a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the give...
分类:
其他好文 时间:
2014-11-29 15:49:23
阅读次数:
135
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2014-11-29 11:48:14
阅读次数:
184
Populating Next Right Pointers in Each Node IIFollow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any ...
分类:
其他好文 时间:
2014-11-29 11:45:49
阅读次数:
141
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:
其他好文 时间:
2014-11-29 11:37:32
阅读次数:
131