avatar
有搞GPU computing的吗# PhotoGear - 摄影器材
t*i
1
http://oj.leetcode.com/problems/minimum-depth-of-binary-tree/
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public int minDepth(TreeNode root) {
getMinDepth(root, 0);
return min;
}
public static int min = Integer.MAX_VALUE;
public void getMinDepth(TreeNode node, int level) {
if (node == null) {
if (min > level)
min = level;
return;
} else {
getMinDepth(node.left, level + 1);
getMinDepth(node.right, level + 1);
}
}
}
Submission Result: Wrong Answer
Input: {0}
Output: 0
Expected: 1
请教一下为啥OJ的结果是0..
avatar
C*c
2
求科普
另外,在金融界现在有应用GPU计算的吗
avatar
s*7
3
去掉static就可以了
avatar
r*r
4
yes, and yes.
avatar
k*a
5
Input: {0}
是什么意思呢?
是指空树吗?
avatar
C*c
6
求科普
有个朋友叫我一起搞这个,我表示很犹豫

【在 r*********r 的大作中提到】
: yes, and yes.
avatar
r*2
7
应该是只有一个根结点,没有任何子结点,所以深度为1~

【在 k*******a 的大作中提到】
: Input: {0}
: 是什么意思呢?
: 是指空树吗?

avatar
t*f
8
I gave up GPU, because it could not run for longer than
a couple of months: nVidia Tesla 4G version. It crashes
due to unknown reasons, possibly because of thermal stability.
But if your program only needs a couple of weeks or shorter
time to finish, it should be OK. Not sure about Fermi. No
time to try and waste.

【在 C****c 的大作中提到】
: 求科普
: 有个朋友叫我一起搞这个,我表示很犹豫

avatar
o*x
10
专家!
我觉得nVidia的制作工艺还是赶不上Intel等CPU公司。

【在 t*******f 的大作中提到】
: I gave up GPU, because it could not run for longer than
: a couple of months: nVidia Tesla 4G version. It crashes
: due to unknown reasons, possibly because of thermal stability.
: But if your program only needs a couple of weeks or shorter
: time to finish, it should be OK. Not sure about Fermi. No
: time to try and waste.

avatar
k*a
11
0应该表示根节点的值。为什么要去掉static?
avatar
C*c
12
大湿..
不知道GPU计算的前景怎么样

【在 t*******f 的大作中提到】
: I gave up GPU, because it could not run for longer than
: a couple of months: nVidia Tesla 4G version. It crashes
: due to unknown reasons, possibly because of thermal stability.
: But if your program only needs a couple of weeks or shorter
: time to finish, it should be OK. Not sure about Fermi. No
: time to try and waste.

avatar
s*7
13
好吧,我来解释一下为啥要去掉static
首先这个static就用得不恰当,min明显是instance of class 的返回值,根本不属于
class
他之所以得到0, 那是leetcode上一个test case 是{},返回为0, leetcode test应该
是用的同一个runtime, 没办法reset static variable导致的
而且他这个后面还有一个错误, 多算了 single child的情况
avatar
o*w
14
我们实验室有人弄,似乎挺有前途的。

【在 C****c 的大作中提到】
: 求科普
: 有个朋友叫我一起搞这个,我表示很犹豫

avatar
k*a
15
Static的解释懂了。
貌似要比较左右子树的返回值才能确定当前最小深度。

【在 s******7 的大作中提到】
: 好吧,我来解释一下为啥要去掉static
: 首先这个static就用得不恰当,min明显是instance of class 的返回值,根本不属于
: class
: 他之所以得到0, 那是leetcode上一个test case 是{},返回为0, leetcode test应该
: 是用的同一个runtime, 没办法reset static variable导致的
: 而且他这个后面还有一个错误, 多算了 single child的情况

avatar
t*f
16
GPU computing has its own pros and cons. It handles
certain types of computing tasks extremely efficiently.
However, there are things GPU cannot handle well. It all
depends on the applications and the corresponding algorithms
being used/developed.

【在 C****c 的大作中提到】
: 大湿..
: 不知道GPU计算的前景怎么样

avatar
t*i
17
明白了,多谢指教!

【在 s******7 的大作中提到】
: 好吧,我来解释一下为啥要去掉static
: 首先这个static就用得不恰当,min明显是instance of class 的返回值,根本不属于
: class
: 他之所以得到0, 那是leetcode上一个test case 是{},返回为0, leetcode test应该
: 是用的同一个runtime, 没办法reset static variable导致的
: 而且他这个后面还有一个错误, 多算了 single child的情况

avatar
s*c
18


【在 C****c 的大作中提到】
: 求科普
: 有个朋友叫我一起搞这个,我表示很犹豫

avatar
s*c
20
问题就是一个 你是想上NV那条船 还是想上微软那条船

【在 C****c 的大作中提到】
: 求科普
: 有个朋友叫我一起搞这个,我表示很犹豫

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。