Redian新闻
>
RF测试还是Signal Integrity?
avatar
RF测试还是Signal Integrity?# EE - 电子工程
r*w
1
如果在加拿大被check,可以在加国停留多久等签证呢?
网上说加拿大一般check都是3个周,是否可以考虑在那边等而不用回国呢?
谢谢各位
avatar
k*n
2
闲来无事又去翻看了前两年红极一时的电影《初恋这件小事》,真是感动的一把鼻涕一
把泪。感动完后突然就脑洞大开的想起初恋了。初恋完全是一个不良少年,别无所长,
偏就长得极帅,高高瘦瘦又皮肤白净、唇红齿白,初中时的孩子谁会在乎那许多,颜值
就是一切!那时多纯真,喜欢他又不敢和他说话,只敢像一条小尾巴一样偷偷地远远的
跟着他,看到他和别的女生打闹玩耍就一阵心塞,那种心情现在想起来都觉得分外美好。
后来大概是他觉得有趣就交往了,只可惜,交往带来的更多的记忆却是互相伤害,他是
不良少年,喜欢泡吧、喝酒、打架,我是典型乖乖女,九点以前准时回家。一开始的美
好与好奇就在彼此的差异里慢慢的消耗殆尽,然后就是无尽的争吵、和解、再争吵,直
到筋疲力尽。也许不良少年和乖乖女皆大欢喜的爱情故事只存在于小说中吧。
但是尽管这样,我仍旧认定那时的心情与感情都是最纯粹的。
avatar
z*u
3
http://www.dm123.cn/new/dmzx/2012-03-25/38672.html
预定于4月播出的推理动画「冰果」,原作漫画第三卷单行本公开了重要情报。完全
通过预定的方式发售的「冰果」漫画第三卷限定版,将同捆原创动画蓝光碟。该限定版
预定于2013年1月发售,而接受预订的期限将截止于2012年9月29日。在OAD中,于市民
游泳池发生了一起事件,惠瑠、摩耶花等古典部的成员正穿着泳装在泳池里来回奔走着
,该OAD预计时长25分钟。以泳装为卖点的推理向动画OAD,真是一个奇怪的组合,其销
量也难以预料,但是相信一定也有不少感兴趣的粉丝捧场,在这里先预祝这部泳装OAD
能取得一个好的成绩。
avatar
S*C
4
Google面试题
Given a sequence S of integers, a subsequence is any selection of numbers of
S in the same order as S. For example, if S = 1,1,2,3,5,8,13 then 2,3,8 is
a subsequence of S and so is 1,1,5,13 and so is 1,2,3. However, 5,6,7 is not
a subsequence, 8,5,2 is also not a subsequence.
A subsequence T is increasing is T[i] < T[i+1] for all i.
Given a sequence S = 4, 9, 3, 8, 6, 7, 10 .... : we can have 3, 8, 10 or 4,
9, 10 or 4, 6,7,10 as its increasing subsequences.
Our task is : given a sequence S of n numbers, count the number of
increasing subsequences of S. Given an O( n log n) algorithm to accomplish
this task.
avatar
l*b
5
请教各位大神Signal Integrity Engineer 和 RF testing engineer (PA, LNA)的工作
前景怎么样?哪个技术要求更高一些?哪个跳槽的出路更广一些(比如跳到不同公司相
同职位,或者以后向design engineer转型)?
先谢谢大家!
avatar
b*g
6
一般3周, 最好在加拿大等着。
首先,今年陆路边境检查很严,如果被check,基本上闯不回去。
其次,从加拿大回国不是一个好的选择,
avatar
s*l
7
我也看过,那电影确实不错
avatar
S*C
8
我这里有一个求最长递增子序列长度的O(nlogn)动态规划算法作为参考
public class LongestIncreasingSubseq {
static int min_last_element[];// 记录长度为i的递增子序列中最大元素的最小
值, min_last_element is an sorted array
static int lengthOfLIS;
public static void main(String args[]) {
int a1[] = new int[] { 12, 11, 13, 10, 14, 11, 15, 12, 17, 20, 11,
22 };
min_last_element= new int[a1.length];
System.out.println(findLongestIncreasingSubseq(a1, a1.length));
}
// 返回min_last_element[i]中刚刚大于x的那个元素的下标
static int binarySearch(int[] min_last_element, int lengthOfLIS, int x) {
int left = 0, right = lengthOfLIS, mid;
while (left <= right) {
mid = (left + right) / 2;
if (x > min_last_element[mid])
left = mid + 1;
else if (x < min_last_element[mid])
right = mid - 1;
else
return mid;
}
return left;
}
static int findLongestIncreasingSubseq(int[] A, int size) {
min_last_element[0] = A[0];
lengthOfLIS = 1;
for (int i = 1; i < size; i++) {
if (A[i] > min_last_element[lengthOfLIS - 1]) {//case 1
min_last_element[lengthOfLIS] = A[i];
lengthOfLIS++;
} else {//case 2
int pos = binarySearch(min_last_element, lengthOfLIS, A[i]);
min_last_element[pos] = A[i];
}
}
return lengthOfLIS;
}
}
avatar
R*y
9
感觉Signal integrity engineer要求高些,将来跳槽不好说,可能RF test engineer
机会多些吧。
avatar
l*b
10
酱紫。看很多job description 上描述Signal integrity很像testing,也是测量信号
distortion等,不过是broad band communication,不是RF narrow band.不知道我这
样理解对不对。
谢谢!

engineer

【在 R********y 的大作中提到】
: 感觉Signal integrity engineer要求高些,将来跳槽不好说,可能RF test engineer
: 机会多些吧。

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