Redian新闻
>
h1b公司内部换工作对申请绿卡的影响? (转载)
avatar
h1b公司内部换工作对申请绿卡的影响? (转载)# EB23 - 劳工卡
d*g
1
一个stack, with push, pop, min()三个method,问如何设计min使效率最高
我说把push设计为每次输入都比较转换,2,3,5,6,10这样最上面都是最小的元素。
好像还不满意,不知道还有没有更好的设计方法?
avatar
z*n
2
请问:
1. sciencedaily, energydaily 和 physorg 这些网站上的算是mediareport麼?
2. 这些报道只提老板的名字和文章的名字, 我是第二作者没提到(其他作者也都没提
), 能算么?
3. 很多网站只是原文转载,这些转载的数目能算么?
多谢!!!
avatar
z*r
3
【 以下文字转载自 Working 讨论区 】
发信人: zqmaster (battlefield), 信区: Working
标 题: h1b公司内部换工作对申请绿卡的影响?
发信站: BBS 未名空间站 (Sun Apr 8 14:15:56 2012, 美东)
公司刚刚被收够,有机会可以在公司内部调动下(外州),工作种类和职责会有变化。
140在原来公司已经批准了,但是也没有收据、号码之类。想问下版上达人,这种情况
内部换工作对将来绿卡申请和排期有多大影响?需要公司重新递交140么?谢谢啊 \bow
avatar
h*d
4
用两个stack那题
所有都是O(1) ?
avatar
t*6
5
如果你有其他有你名字的,把这些加上可以,否则都没有你名字风险大些.
avatar
z*r
6
Up

bow

【在 z******r 的大作中提到】
: 【 以下文字转载自 Working 讨论区 】
: 发信人: zqmaster (battlefield), 信区: Working
: 标 题: h1b公司内部换工作对申请绿卡的影响?
: 发信站: BBS 未名空间站 (Sun Apr 8 14:15:56 2012, 美东)
: 公司刚刚被收够,有机会可以在公司内部调动下(外州),工作种类和职责会有变化。
: 140在原来公司已经批准了,但是也没有收据、号码之类。想问下版上达人,这种情况
: 内部换工作对将来绿卡申请和排期有多大影响?需要公司重新递交140么?谢谢啊 \bow

avatar
d*g
7
用两个stack如何能够实现push,pop,min都是O(1)?如果min是O(1)那么push肯定要
至少Log(N)啊,输入是random的integer3,6,2,8, 5, 10这样
avatar
d*d
8
没提名字不算

【在 z******n 的大作中提到】
: 请问:
: 1. sciencedaily, energydaily 和 physorg 这些网站上的算是mediareport麼?
: 2. 这些报道只提老板的名字和文章的名字, 我是第二作者没提到(其他作者也都没提
: ), 能算么?
: 3. 很多网站只是原文转载,这些转载的数目能算么?
: 多谢!!!

avatar
a*a
9
需要 h1b amendment, 然后重新 申请perm , 140。priority date 可以保留。

bow

【在 z******r 的大作中提到】
: Up
:
: bow

avatar
w*m
10
another stack just keeps the current min information.
And it updates only when minimum element in the stack changes(a number
smaller than current minimum pushes in or current minimum pops out)

【在 d*********g 的大作中提到】
: 用两个stack如何能够实现push,pop,min都是O(1)?如果min是O(1)那么push肯定要
: 至少Log(N)啊,输入是random的integer3,6,2,8, 5, 10这样

avatar
i*u
11
首先,确认你原来的公司是否存在和继续运营;如果是,你可以不做;
如果你原来公司不存在了,恐怕要重做了;
你原来公司存在但完全停止运营,你最好重做;
我客户里这类情况发生过,有不做依然拿到绿卡的
avatar
s*e
13
听有的律师说,140 和PERM 是job-specific。也就是即使公司还在,但因为工作性质
变了,原先批准的也不再适用,必须file一个新的PERM。
不知这个说法对吗?Your Comments?

【在 i*u 的大作中提到】
: 首先,确认你原来的公司是否存在和继续运营;如果是,你可以不做;
: 如果你原来公司不存在了,恐怕要重做了;
: 你原来公司存在但完全停止运营,你最好重做;
: 我客户里这类情况发生过,有不做依然拿到绿卡的

avatar
j*u
14


【在 d*********g 的大作中提到】
: 一个stack, with push, pop, min()三个method,问如何设计min使效率最高
: 我说把push设计为每次输入都比较转换,2,3,5,6,10这样最上面都是最小的元素。
: 好像还不满意,不知道还有没有更好的设计方法?

avatar
j*u
15
two stacks, one to keep min and push/pop together
or one stack but every item has a local min, i.e.
class MinStack
{
Stack stack;
private class StackItem
{
public T Data { get; set;}
public T LocalMin { get; set;}
}
}

【在 d*********g 的大作中提到】
: 一个stack, with push, pop, min()三个method,问如何设计min使效率最高
: 我说把push设计为每次输入都比较转换,2,3,5,6,10这样最上面都是最小的元素。
: 好像还不满意,不知道还有没有更好的设计方法?

avatar
t*0
17
When you perform a pop operation, check if the popped element is the same
as the current minimum. If it is, pop it off the minimum stack too.
seems not correct -
how about the popped up element is not current minimum but another element
in the minimum stack.
next time when a current minimum is popped out, an incorrect current
minimum might be used from the minimum stack.

【在 d*********g 的大作中提到】
: 好方法
avatar
t*0
18
this is not possible. suppose there is such an element in the minimum stack
- then it must be pushed into minimum stack earlier then current minimum.
Therefore it is pushed into the regular stack earlier then current minimum...
this is correct.

【在 t****0 的大作中提到】
: When you perform a pop operation, check if the popped element is the same
: as the current minimum. If it is, pop it off the minimum stack too.
: seems not correct -
: how about the popped up element is not current minimum but another element
: in the minimum stack.
: next time when a current minimum is popped out, an incorrect current
: minimum might be used from the minimum stack.

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