Redian新闻
>
律师的评估是这样子的,大家觉得希望怎么样?
avatar
律师的评估是这样子的,大家觉得希望怎么样?# Immigration - 落地生根
p*5
1
LeetCode convert sorted linked list to BST
小弟C++转学java,明明C++可过的程序,写成java就过不去了,求指点....
public class Solution {
public TreeNode convert(ListNode current, int start, int end)
{
if(start > end)
return null;
int mid = start + (end-start)/2;
TreeNode left = convert(current,start,mid-1);
TreeNode parent = new TreeNode(current.val);
parent.left = left;
current = current.next;
parent.right = convert(current,mid+1,end);
return parent;
}
public TreeNode sortedListToBST(ListNode head) {
// Start typing your Java solution below
// DO NOT write main() function
if(head == null)
return null;
ListNode current = head;
int len = 0;
while(current != null)
{
len++;
current = current.next; //是不是current是head的引用所以head也会
最终变成null?
}
return convert(head,0,len-1);
}
}
avatar
m*5
2
正在准备Eb1A,心底还是不太有谱.所以请律师评估一下: 以下是著名的刘律师的评估结
果, 大家觉得如何? 是不是第3项还必须继续加强一些再行动?
you can make fairly strong arguments for criteria 1 (notes: Publications)
and 2 (notes: citations). At the same time, your reviewer work provides
reasonable evidence for criterion 3 (notes: 17 times review for 15
manuscript from 9 different english journals, IF: 1-4).
谢谢
avatar
f*g
3
不是
avatar
K*N
4
应该是很强的case了。17次还算不错了,从现在开始准备,肯定还会有审稿来,到时候
就过20了。bless。
avatar
l*0
5
个人感觉是你传head进去是不行的。head本身是个值,你local改了也没用。要么你用
个全局变量,要么你用TreeNode curTail=new TreeNode[1]; curTail[0]=head;
然后把curTail传进去。接着,把你源代码里面所有的head改成curTail[0]应该就好了。

【在 p**********5 的大作中提到】
: LeetCode convert sorted linked list to BST
: 小弟C++转学java,明明C++可过的程序,写成java就过不去了,求指点....
: public class Solution {
: public TreeNode convert(ListNode current, int start, int end)
: {
: if(start > end)
: return null;
: int mid = start + (end-start)/2;
: TreeNode left = convert(current,start,mid-1);
: TreeNode parent = new TreeNode(current.val);

avatar
i*N
6
sounds very positive

【在 m********5 的大作中提到】
: 正在准备Eb1A,心底还是不太有谱.所以请律师评估一下: 以下是著名的刘律师的评估结
: 果, 大家觉得如何? 是不是第3项还必须继续加强一些再行动?
: you can make fairly strong arguments for criteria 1 (notes: Publications)
: and 2 (notes: citations). At the same time, your reviewer work provides
: reasonable evidence for criterion 3 (notes: 17 times review for 15
: manuscript from 9 different english journals, IF: 1-4).
: 谢谢

avatar
b*n
7
java只有值传递,c++的引用不等价于java的引用
你用C++的引用传递是不行的
avatar
L*S
8
问题,17次审15个稿。这个是不是应该算15次?
resubmit的不知道怎么算。我也有这个问题,正在疑惑中。
请各位解答
avatar
a*y
9
应该没问题把
刘律师只要没有直接拒绝,
应该都有把握
avatar
m*r
10
算17次, 一样的劳动
avatar
z*y
11
上,strong
avatar
m*5
12
我是准备DIY的,希望10月前提交. 现在时间很紧阿.压力超大中.
多谢各位鼓励.
同行的,一起加油
avatar
b*e
13
看来老刘现在看大家都说他的fair chance,他决定改comments了,呵呵

【在 m********5 的大作中提到】
: 正在准备Eb1A,心底还是不太有谱.所以请律师评估一下: 以下是著名的刘律师的评估结
: 果, 大家觉得如何? 是不是第3项还必须继续加强一些再行动?
: you can make fairly strong arguments for criteria 1 (notes: Publications)
: and 2 (notes: citations). At the same time, your reviewer work provides
: reasonable evidence for criterion 3 (notes: 17 times review for 15
: manuscript from 9 different english journals, IF: 1-4).
: 谢谢

avatar
L*S
14
同加油,也想赶10月呀!
hand

【在 m********5 的大作中提到】
: 我是准备DIY的,希望10月前提交. 现在时间很紧阿.压力超大中.
: 多谢各位鼓励.
: 同行的,一起加油

avatar
C*y
15
strong
bless
avatar
i*t
16
很强了啊 必过啊 估计至少200+citation 20+paper 没问题!的
avatar
f*s
17
strong case, bless!!!
avatar
c*t
18
原来fair chance是从老刘这里流行起来,够绕的, 赫赫

【在 b*******e 的大作中提到】
: 看来老刘现在看大家都说他的fair chance,他决定改comments了,呵呵
avatar
j*e
19
bless
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。