首页 > 其他
软件工程课程收获
软件工程课最大的收获应该就是让我感受到了些许走上工作敢为后面对boss的氛围,那么多的任务,那么多的文档,以及那么多的deadline,一个本应该为理论课的实践课,总是一次次撞击着我们的小心脏。要知道将来走向工作岗位的我们是没有大牛可以依靠的,可以依靠的只有自己,其实在压力下,我们也可以成为大...
分类:其他   时间:2014-05-30 16:01:57    收藏:0  评论:0  赞:0  阅读:365
Palindrome Partitioning
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ofs.For example, giv...
分类:其他   时间:2014-05-30 16:04:50    收藏:0  评论:0  赞:0  阅读:407
Construct Binary Tree from Preorder and Inorder Traversal
Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree./** * Definitio...
分类:其他   时间:2014-05-30 16:03:21    收藏:0  评论:0  赞:0  阅读:384
软件工程课总结与建议
软件工程课终于结课了,在这里做一个小的总结: 在这门课上,我了解了整个软件开发的流程,以及用到的一些测试软件性能以及衡量工作效率的工具。认识到一些在软件编程工作中容易忽略的问题,体会到团队合作的总要性。 最后,建议老师把“你提想法,我来编程”活动加载到项目实践中,征求广大校友意见。这样我...
分类:其他   时间:2014-05-30 16:07:24    收藏:0  评论:0  赞:0  阅读:390
Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *...
分类:其他   时间:2014-05-30 16:08:50    收藏:0  评论:0  赞:0  阅读:448
Word Break
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他   时间:2014-05-30 16:10:10    收藏:0  评论:0  赞:0  阅读:374
Binary Tree Maximum Path Sum
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:其他   时间:2014-05-30 16:11:41    收藏:0  评论:0  赞:0  阅读:362
Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:其他   时间:2014-05-30 16:14:22    收藏:0  评论:0  赞:0  阅读:398
Construct Binary Tree from Inorder and Postorder Traversal
Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree./** * Definiti...
分类:其他   时间:2014-05-30 16:13:02    收藏:0  评论:0  赞:0  阅读:402
Flatten Binary Tree to Linked List
Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened t...
分类:其他   时间:2014-05-30 16:15:47    收藏:0  评论:0  赞:0  阅读:388
Single Number
Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime complexity...
分类:其他   时间:2014-05-30 16:17:12    收藏:0  评论:0  赞:0  阅读:335
Best Time to Buy and Sell Stock III
Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
分类:其他   时间:2014-05-30 16:19:53    收藏:0  评论:0  赞:0  阅读:413
Populating Next Right Pointers in Each Node II
Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution stil...
分类:其他   时间:2014-05-30 16:18:32    收藏:0  评论:0  赞:0  阅读:372
Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他   时间:2014-05-30 16:21:16    收藏:0  评论:0  赞:0  阅读:496
我遇到的警告错误及解决方法
Warning: Latch audio_deal:audio_deal_inst|val_vrefl[2] has unsafe behavior Warning: Ports D and ENA on the latch are fed by the same signal audio_dea....
分类:其他   时间:2014-05-30 16:23:51    收藏:0  评论:0  赞:0  阅读:768
Valid Palindrome
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:其他   时间:2014-05-30 16:25:18    收藏:0  评论:0  赞:0  阅读:376
Max Points on a Line
Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line./** * Definition for a point. * struct Point { * ...
分类:其他   时间:2014-05-30 16:27:59    收藏:0  评论:0  赞:0  阅读:405
Reverse Words in a String
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.Cl...
分类:其他   时间:2014-05-30 16:26:44    收藏:0  评论:0  赞:0  阅读:438
Word Break II
Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl...
分类:其他   时间:2014-05-30 16:29:16    收藏:0  评论:0  赞:0  阅读:466
Best Time to Buy and Sell Stock
Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie...
分类:其他   时间:2014-05-30 16:30:44    收藏:0  评论:0  赞:0  阅读:357
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!