由买买提看人间百态

topics

全部话题 - 话题: templating
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
c********2
发帖数: 56
1
来自主题: JobHunting版 - 贴个FLEXTRADE的在线C++测试的题
面的是Associate C++ Developer,下面是面试题,光顾着记题了,最后只有56%的通过
率,要到
80%才能ONSITE,算是帮大家做点贡献吧,他家在招人,赶快去投简历
1) #include
using namespace std;
struct A{
A(int value) : m_value(value){}
int m_value;
};
struct B:A {
B(int value):A(value){}
};
int main(){
try {
try{
throw B(5);
}
catch(A a){
a.m_value *=2;
throw;
}
catch(B b){
b.m_value -=2;
throw b;
}
}
catch(A a){
... 阅读全帖
c**********e
发帖数: 2007
2
来自主题: JobHunting版 - C++ Q90 - Q92
The given answer for Q92 is A, C, D.

C++ Q92: function templates and overloading
Multiple choice: Identify what formal type parameters are used for.
A. To specify the argument types to a function template
B. To instantiate a function template
C. To specify the return type of a function template
D. To declare variables within the function template body
r****t
发帖数: 10904
3
我倒是发现一个不是必要,但是方便的地方,不知道和你说的 template 是不是一个意
思. 说起来有点绕,单起一行:
是在 derived class template 里面需要 call an inherited method (not
overwritten) from the base class template, 但是这个 method signature 不依赖
于任何 template argument 的时候,如果直接
method( args );
编译器会有问题,不过 -fpermissive 能过。
stackwithmin.cpp: In member function 'void StackWMin::pop()':
stackwithmin.cpp:29: error: there are no arguments to 'top' that depend on a
template parameter, so a declaration of 'top' must be available
stackwithmin.cpp:29: ... 阅读全帖
t****t
发帖数: 6806
4
来自主题: JobHunting版 - 问个构造函数的问题
呃, 看到第一个回贴我以为他懂的
看到第二个回贴我才知道他是装懂的
这个答案是这样的
class B
{
public:
B(args_1);
B(args_2);
// and many constructors with different arg lists
};
class D : public B
{
public:
template D(T args_1) : B(args_1) {}
template D(T1 args_1, T2 args_2) : B(args_1, args
_2) {}
/* ...按参数个数写出D::D的template */
};
并不是把B变成模板.
当然, 如果允许C++11的话, 就直接在D里写using B::B; 就可以了.
不过, 这个特性目前gcc还没支持. 如果用支持的特性, 可以用variadic template (
supported in gcc 4.3+), 这样就只要写一个模板就可以了, 不用按个数:
template 阅读全帖
b*******g
发帖数: 57
5
来自主题: JobHunting版 - 请教个C++的基础问题
感谢前辈csiscoder经过实测的耐心细致的回复!给一千个赞!
运行了您修改的程序,bug free!
不过,还有个问题请求指点:
如果我将程序分别存在.h和.cpp文件里,为何有这样的报错呢:“error LNK2019:
unresolved external symbol”
--------------------------------------------------------------------
LeetCode.h内容为:
#include
#include
#include
template
class Point {
public:
T x;
T y;
Point() : x(0), y(0) {}
Point(T a, T b) : x(a), y(b) {}
};
//Find k closest points to origin
template
vector > findkClosestPoints(... 阅读全帖
f*****g
发帖数: 260
6
来自主题: Immigration版 - EB1-A PP approved
Updates:
本想等我弄完I-485后再来折腾这些东西的。但这两天收到好多来自申友的、要求给材料的短信,也能体会到大家与我当时一样的心情。所以,就先把letter templates整理下下,并更新在这个贴子后面了。有留下email地址的申友,我已把letter templates发到你的信箱里,请查收。至于还未留email地址,就请不要再给我留email地址了,直接在本贴后面拷就是了。(当然,如果是想给俺包子的话,俺是会张大口袋接的 ---- 俺也想ZAN点儿,等GC到手后,发几个给曾经帮助过我的前辈们,:)
这次能过,可能与我所做的项目比较特殊有关(恕我不能在此提及,因为不想被人肉),当然,运气是最重要的,我想。也有些申友是写信问问题的。我真不是什么办GC的牛人,GC办到现在,其实还是有很多拎不清的地方。不过,如果是我懂得的那些,我一定会尽量答复的。只是请给我点时间,因为我这阵子公事、私事的搅成一团,实在是太忙了;还有,我想先把485交上了。
注:本贴后面,共有8封用来联系教授、编辑、或review verification letters的信或模板,请大家自行COPY。也请大... 阅读全帖
u**********n
发帖数: 91
7
来自主题: WaterWorld版 - UCSD事件跟进内容
本帖是方便大家集思想广义,帮我们最大范围的把事情做好,把影响扩大,以提高华人在美国的地位,让我们不要变成在美国的东亚病夫。
这个ID是几个有共识的同学共同管理的,方便我们大家一起把我们可以做的事情都做得彻底,把事情最大范围地处理好。ID刚建成,所以我们现在水世界灌水,三天后我们军版见。
To Do in 英语社区:
UCSD社区
Template for contact email
Forward email to all Chinese students and scholars
American Born Chinese Student Association
Asian American Fratenity
Asian American Association
Korean Student Assn.
Japanese Student Assn.
Philipino Student Assn.
Indian Student Assn.
示威静坐
Facebook Template
Twitter Template
Y... 阅读全帖
h**********c
发帖数: 4120
8
think in cpp vol 2 chapter 3
//: C03:TemplateTemplate.cpp
#include
#include
#include
using namespace std;
// As long as things are simple,
// this approach works fine:
template
void print1(C& c) {
typename C::iterator it;
for(it = c.begin(); it != c.end(); it++)
cout << *it << " ";
cout << endl;
}
// Template-template argument must
// be a class; cannot use typename:
template class C>
void print2(C& c) {
copy(c.begin(), c
g**u
发帖数: 504
9
我把完整代码贴出来吧,这个是BSTree.h文件如下:
#include
#include
using namespace std;
template
class BinarySearchTree
{
public:
struct tree_node
{
tree_node* left;
tree_node* right;
T data;
};
public:
BinarySearchTree(){ root = NULL; }
bool isEmpty() const { return root==NULL; }
void insert(T);
void print_search(T);
private:
tree_node* search(tree_node*,T);
private:
tree_node* root;
};
template
void BinarySearchTree<... 阅读全帖
d******i
发帖数: 7160
10
来自主题: Linux版 - ArchLinux安装deluge失败
多谢。走到第二步WebGUI又挂了。
好像又缺mako.template。
试着pacman Sy mako.template不灵。
咋整?
[root@alarm ~]# deluged
[root@alarm ~]# deluge-web
Traceback (most recent call last):
File "/usr/bin/deluge-web", line 9, in
load_entry_point('deluge==1.3.5', 'console_scripts', 'deluge-web')()
File "/usr/lib/python2.7/site-packages/deluge/ui/web/web.py", line 138, in
start
web.start()
File "/usr/lib/python2.7/site-packages/deluge/ui/web/web.py", line 107, in
start
import server
File "/usr/lib/pyt... 阅读全帖
d******i
发帖数: 7160
11
来自主题: Linux版 - ArchLinux安装deluge失败
多谢。走到第二步WebGUI又挂了。
好像又缺mako.template。
试着pacman Sy mako.template不灵。
咋整?
[root@alarm ~]# deluged
[root@alarm ~]# deluge-web
Traceback (most recent call last):
File "/usr/bin/deluge-web", line 9, in
load_entry_point('deluge==1.3.5', 'console_scripts', 'deluge-web')()
File "/usr/lib/python2.7/site-packages/deluge/ui/web/web.py", line 138, in
start
web.start()
File "/usr/lib/python2.7/site-packages/deluge/ui/web/web.py", line 107, in
start
import server
File "/usr/lib/pyt... 阅读全帖
c*****t
发帖数: 1879
12
来自主题: Programming版 - XSL question
Finally figured out the solution, just a bunch of trials and guesses :)












...


a>
L*********r
发帖数: 92
13
来自主题: Programming版 - sgi stl 源代码一问
It is not instantiation. Is there a rule in standard that template
instantiation can still has the type parameter?
it is to partially specialize a synonym for the template class. the result
still is a template, a template synonym.
your sample is partially specialize the definition of the template class.
i**p
发帖数: 902
14
Which one is the a valid function prototype? Is it C only?
A. template void Display(std::vector& obj);
B. template void Display(std::vector& obj);
C. template void Display(std::vector& obj);
D. template void Display(std::vector& obj);
E. template void Display(std::vector& obj);
z***e
发帖数: 5393
15
来自主题: Programming版 - C++ linking 弱问 (one file)
可以分开啊,比如:
#include
#include
using namespace std;
template
void write(T);
template
void test(T parameter)
{
write(parameter);
}
int main()
{
test(1);
test("adbsdfs");

return 1;
}
template
void write(T a)
{
std::cout< }
关键是compiler在instantialize你的template的时候,会好像#define一样展开,你的
code里面的两个Read(一个declare,一个definition),展开后是不同的两个东西,所
以当然会说第一个Read找不到definition了。
template本身就是overload啊,还要怎么overload?
c**m
发帖数: 30
16
来自主题: Programming版 - vector::iterator不对
because you are defining a template so vector can't be defined until you
instantiate the template, but before vector can be defined the template
has to be defined first. chicken and egg problem. Anyway, the effect is
when the compiler is trying define the template it has no way of figuring
out what vector::iterator is. If you think about it you would see why.
The solution is, of course, you explicitly tell the compiler what it is: a
typename. like below:
template
void f
k****5
发帖数: 546
17
来自主题: Programming版 - 有段c++代码看不懂
//===----------------------------------------------------------------------=
==//
// isa Support Templates
//===----------------------------------------------------------------------=
==//
// isa - Return true if the parameter to the template is an instance of
the
// template type argument. Used like this:
//
// if (isa(myVal)) { ... }
//
template struct isa_impl_cl;
// Define a template that can be specialized by smart pointers to reflect
c********2
发帖数: 56
18
来自主题: Programming版 - c++面试问题
1)
class foo{
public:
foo(int i){}
};
class bar: virtual foo{
public:
bar(){}
};
bar b;
what's wrong with the above code
2)
class X{
public:
X& operator=(const X& rhs);
const X& operator+(const X&rhs) const;
const X& operator+(int m);
private:
int n;
};
int main(){
X a, b, c;
system("pause");
return 0;
}
which one is wrong?
a=c+5;
a=a=b+c;
(a=c+4)=b+2;
a=b+c;
b=a+1;
3)
template<> class Stack
{
public:
int push(char);
char pop();
};
what template<> signify in the... 阅读全帖
t****t
发帖数: 6806
19
来自主题: Programming版 - 师傅们,C++概念题,弟子有礼了
细节上当然有很多讲究, 比如template可以递归, 一般macro不能递归(如果用文件#
include的话, 也是可以递归的), template可以带调试信息, macro没有调试信息(
again, 如果用#include的话, 也不是完全没有), 等等.
但是本质上来说就是这样. 至于macro不能access成员变量, 那显然没有这回事. 除了
没有语法检查, 别的没什么大区别. 本质上来说, template是个语法糖, 当然这是个很
大块的糖, 大到整个STL都建立在上面的程度. 但是你看看boost就知道了, 以前
template没那么好使的时候(比如说VC6的版本), 一大堆本来应该用template做的东西
都是用macro模拟的.
至于int和main一样, 这个不好说. int是保留词, 没法一样. main和foo则区别不大.

理。
y****n
发帖数: 15
20
来自主题: Programming版 - 请教一个关于std::function的问题
请大牛们帮忙看看这段代码,在编译的时候会有如下error message 请问如何能编译通
过啊?跪谢!
当然这只是个虚构的例子,主要是想在template存在的情况下,传递一个member
function的指针给另一个member function.
test1.cpp: In member function 'void Foo::testInt()':
test1.cpp:30:61: error: no matching function for call to 'Foo::processVector
(std::vector&, std::_Bind_helper std::_Placeholder<1>&>::type)'
processVector(arr, std::bind(&Foo::print, this, _1));
^
test1.c... 阅读全帖
x****k
发帖数: 2932
21
来自主题: Programming版 - 这个是什么设计模式?
不一样吧,crpt的应该是
// The Curiously Recurring Template Pattern (CRTP)
template
class Base
{
// methods within Base can use template to access members of Derived
};
class Derived : public Base
{
// ...
};
template paramter of Base class template is class Derived.
https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern
h**o
发帖数: 548
22
来自主题: Software版 - Excel文件回错位吗?
我有一个excel的template文件,是别人作的, 包括”Raw date”, “Figure”, “
Table” 等项。其中 “Figure”, “Table”把”Raw date”中的信息用图表的形式
显示出来。我只要把自己的原始数据文件(myfile.txt) import到这个template 的文件
里去就行了。
问题是当我import我的文件名(myfile.txt)后,选“raw date”项, 我的数据可以正
确显示,格式也是正确的, 但选 “Figure”, 图画的乱七八糟的,选 “Table”,
表格里都是”#REF1”的字样。
请问是什么原因那?是不是那儿错位了?可是 “raw date”项, 我的数据可以正确显
示,格式也是正确的啊?template 本身应该没问题,被人用过 好多遍了。
附:
我打开文件的步骤是这样的:
打开template file,
选中template file 的“raw date”项,
到excel 的Data 菜单, 选:refresh data, 然后 excel 就要我输入我的文件名
myfile.txt, 然后我就应该
h**o
发帖数: 548
23
我有一个excel的template文件,是别人作的, 包括”Raw date”, “Figure”, “
Table” 等项。其中 “Figure”, “Table”把”Raw date”中的信息用图表的形式
显示出来。我只要把自己的原始数据文件(myfile.txt) import到这个template 的文件
里去就行了。
问题是当我import我的文件名(myfile.txt)后,选“raw date”项, 我的数据可以正
确显示,格式也是正确的, 但选 “Figure”, 图画的乱七八糟的,选 “Table”,
表格里都是”#REF1”的字样。
请问是什么原因那?是不是那儿错位了?可是 “raw date”项, 我的数据可以正确显
示,格式也是正确的啊?template 本身应该没问题,被人用过 好多遍了。
附:
我打开文件的步骤是这样的:
打开template file,
选中template file 的“raw date”项,
到excel 的Data 菜单, 选:refresh data, 然后 excel 就要我输入我的文件名
myfile.txt, 然后我就应该可
n**e
发帖数: 3
24
已经有了一个xml文件,一个根据此xml文件写的xslt文件,
怎样才能把xml文件转换成html文件啊?
是在xml文件中加一句什么命令吗?
比如,xml文件为:


very easy?

而xslt文件为:

xmlns:xsl="http://www.w3.org/1999/XSL/Transform">











I******E
发帖数: 229
25
我想你对XPath 和 apply-template的理解有一点偏差
先看XSLT中的
这个Xpath 返回一个node-set,包含两个title的element nodes,对于这两个elemenet
node,都应用template (也就是下面的),注意这个 apply-templates select="book/title" />
是在和中间,也就是说先在html中写一个html start tag, 然后对两个
element node应用模版,然后才是html close tag.因此两次调用模版的结果都在
和中间
m*********D
发帖数: 1727
26
(CRISPR的背景资料请参阅Feng Zhang的“Genome engineering using the CRISPR-
Cas9 system”,Nature Protocols 8, 2281–2308 (2013))
背景
我们是作一个与激素相关的肿瘤的。这个肿瘤的治疗方法已经相当完善,就是让身体里
不能生产激素或用一个小分子化合物抢占激素受体上激素的结合部位。但多年治疗后,
会有相当比例的病人产生抗药性。这个抗药性机理相当复杂。我们实验室一直致力于筛
选和现有药物不同的机理的小分子化合物,包括受体和DNA的结合或其他与受体相关的
pathway的inhibitors。前几年成功地筛选出了几个不同机理的化合物,个别在细胞水
平达到了nM的级别,动物测试也在10 mg/kg的水平。
最近在这个领域对抗药性肿瘤的研究发现,部分病人的抗药性是因为受体激素结合部位
发生了突变。一个或几个氨基酸的突变就能导致肿瘤细胞的生长不能被现有药物抑制。
所以,我们很想知道我们筛选出来的化合物对这些突变受体是不是也起作用。理论上来
说,我们的化合物不和激素竞争,突变不会影响我们化合物的效果。但只... 阅读全帖
c**d
发帖数: 104
27
Those ODS graphics in the statistical procedures are predefined template
using Graphics template language(GTL). Using ods trace on to find the name
of that graph template. Then you have two ways to modify them.
1) output SAS codes of the survival graph template.
proc template;
source Stat.Lifetest.Graphics.ProductLimitSurvival;
run;
You can find and change them.
(a) "layout overlay / yaxisopts=(label="Survival Probability")".
(b) DiscreteLegend "Survival" / title=GROUPNAME across=1 lo

发帖数: 1
28
来自主题: Military版 - 12 月26日 可能的真相
【Filariasis
From Wikipedia, the free encyclopedia
Filariasis
Life cycle of Wuchereria bancrofti, a parasite that causes filariasis
Classification and external resources
Specialty Infectious disease
ICD-10 B74
ICD-9-CM 125.0-125.9
Patient UK Filariasis
MeSH D005368
[edit on Wikidata]
Filariasis is a parasitic disease caused by an infection with roundworms of
the Filarioidea type.[1] These are spread by blood-feeding black flies and
mosquitoes. This disease belongs to the group of d... 阅读全帖

发帖数: 1
29
来自主题: Military版 - 中美进入你死我活新时代
12月27日 为什么我要替中国辩护
我要替中国辩护,并不是因为我是一个中国人,而是因为我知道中国就和这世界上绝大
数的国家一样,虽然有很多丑陋的现象,但是他们是受害者。就
象这个犯罪集团里很多的人一样,他们来自各种种族,他们可能充当了工具,但他们不
是制造这一切,谋划这一切的人。虽然经常会暴露中国产品出现问题。但要知道中国是
世界工厂,他们只是打工者,他们只是按照各种雇主提供的配方来生产,他们并不知道
他们会产生怎样的后果。或者这些工人知道后果,但他们只是奴隶,他们又如何去改变
这一切? 所以,当我的调查不断往前推进的时候,不可避免地会涉及各国的企业,但
这并不表明是针对这个国家或这个国家的人民,而是针对一种社会现实和丑陋现象。就
拿菲律宾来说,菲律宾是一个犯罪猖獗的国家,有很多犯罪分子,但是菲律宾人民却是
这个集团的受害者,他们/她们被绑架,沦为了牺牲品,人体实验对象。一个日本人,
强奸上千名菲律宾女孩,却没有受到惩罚。以前我也提到过,有20个国家的名单,这20
个国家的人民其实都是受害者。现在他们把矛头对准中国,或许仅仅是因为我揭示了他
们图害世界人民的内幕,而我是一个中国人的缘... 阅读全帖

发帖数: 1
30
12月27日 为什么我要替中国辩护
我要替中国辩护,并不是因为我是一个中国人,而是因为我知道中国就和这世界上绝大
数的国家一样,虽然有很多丑陋的现象,但是他们是受害者。就
象这个犯罪集团里很多的人一样,他们来自各种种族,他们可能充当了工具,但他们不
是制造这一切,谋划这一切的人。虽然经常会暴露中国产品出现问题。但要知道中国是
世界工厂,他们只是打工者,他们只是按照各种雇主提供的配方来生产,他们并不知道
他们会产生怎样的后果。或者这些工人知道后果,但他们只是奴隶,他们又如何去改变
这一切? 所以,当我的调查不断往前推进的时候,不可避免地会涉及各国的企业,但
这并不表明是针对这个国家或这个国家的人民,而是针对一种社会现实和丑陋现象。就
拿菲律宾来说,菲律宾是一个犯罪猖獗的国家,有很多犯罪分子,但是菲律宾人民却是
这个集团的受害者,他们/她们被绑架,沦为了牺牲品,人体实验对象。一个日本人,
强奸上千名菲律宾女孩,却没有受到惩罚。以前我也提到过,有20个国家的名单,这20
个国家的人民其实都是受害者。现在他们把矛头对准中国,或许仅仅是因为我揭示了他
们图害世界人民的内幕,而我是一个中国人的缘... 阅读全帖

发帖数: 1
31
来自主题: Military版 - 12月28日。 答案
12月28日 仔细阅读以下文章
或许这些文章可以告诉你们孩子被伤害病毒的答案。
Astellas Pharma 应该和这些人体实验有莫大的关系!
Founded 2005; 11 years ago
Headquarters 2-5-1, Nihonbashi-Honcho, Chūō-ku, Tokyo 103-8411, Japan
Key people Yoshihiko Katakana
(President and CEO)
Filariasis
From Wikipedia, the free encyclopedia
Filariasis
Life cycle of Wuchereria bancrofti, a parasite that causes filariasis
Classification and external resources
Specialty Infectious disease
ICD-10 B74
ICD-9-CM 125.0-125.9
Patient UK Filariasis
MeSH ... 阅读全帖
m*******e
发帖数: 1598
32
BY TINA AMIRTHA8 MINUTE READ
This story contains interviews with Christian Kästner, assistant
professor at Carnegie Mellon University; Amy Hirotaka, state policy and
advocacy manager at Code.org; and Janet Siegmund, researcher at the
University of Passau.
In order to expose more students to computer science, 17 states have passed
legislation to create basic math and science requirements in the curriculum,
rather than count them as electives. But lawmakers in Texas have made
computer program... 阅读全帖

发帖数: 1
33
超尼玛的傻逼,自己回头看看谁在按template填词造句
[在 gxfcdjdl (Ёб твою мать) 的大作中提到:]
:承认吧,你已经被老夫的template打脸piapia都晕过去了,LOL
:<br>: 你正吃着屎,按老子的template填词造句
:<br>: [在 gxfcdjdl (Ёб твою мать) 的大作中提到:]
:<br>: :对付你这种翔eater,按template填词造句都嫌多
:<br>: :
l******h
发帖数: 2
34
Highly reputational company with very competitive compensation for all
positions.
Please send in your resume and position/positions you like to apply to my
email address below.
h*******[email protected]
All resumes will be deliver to hiring manager directly. Act fast!
Thanks!
Silicon Engineering Group
Sr. Physical Design Timing Engineer
Timing (STA) Manager
Senior Physical Design Engineer
CAD Manager - Front-End Design and Verification
Sr. CAD Engineer - Place & Route / Physical Design Engineer
Sr. CA... 阅读全帖
k***e
发帖数: 556
35
今天想实现前两天大家讨论的minmaxheap找median,结果碰到一个问题。
I want pass function pointer to create a heap that has comparison function
as I defined. Thus I don't need both minHeap maxHeap. By the way, because I
have heap with template parameters, I also need function pointers with
template parameter.
It looks like:
template
class Heap {
private:
T* data;
public:
Heap(const vector& dataSrc, bool (*cmp)(T, T);
};
However, I cannot get a function pointer with template parameter. I really
had no idea h
a***e
发帖数: 1140
36
来自主题: JobHunting版 - 问个构造函数的问题
template
class B
{
public:
B(T arg) {}
};
template<>
class B
{
public:
B(T1 arg) {}
};
...
template
class D : public B
{
public:
D(T arg) : B(arg) {}
};
class D does not need to change.
suppose class B has other new c'tors, it just need to add specification
template class to refine it.
t****t
发帖数: 6806
37
来自主题: JobHunting版 - 问个构造函数的问题
if the two constructors of B can be distinguished, then D's two
instantiations can be distinguished.
suppose you have
B::B(const char*, int);
B::B(int, const char*);
B::B(double, float);
and template:
template
D::D(T1 t1, T2 t2) : B(t1, t2) {}
you can write
B b1("abc", 1), b2(2, "def"), b3(1.234, 5.678f);
D d1("ABC", 3), d2(4, "DEF"), d3(10.987, 6.543f);
clear enough?
as for your other question, if you have a 100 parameter constructor, you do
have to write 100 paramete... 阅读全帖
f*********m
发帖数: 726
38
来自主题: JobHunting版 - 谷歌面经
第二题贴个template List版的,请各位指正:
template
class NextClass
{
public:
NextClass(list >& L):CList (L), listListIt(L.begin()), listIt((*L.
begin()).begin())
{
while (listlistIt != CList.end())
{
if ((*listlistIt).begin() != (*listlistIt).end())
{
listIt = (*listlistIt).begin();
break;
}
++listlistIt;
}
if ((*listlistIt).begin() == (*listlistIt).end())
c... 阅读全帖
t****t
发帖数: 387
39
这段程序我可以运行没问题
如果再pop一次就crash
template struct node{
node *next;
T data;
node(node* n, T d):next(n),data(d){};
};
template class stack{
public:
node *head;
int ind;
stack(){}
~stack(){}
void push(T d);
T pop();
bool isEmpty();
};
template T stack::pop(){
T d=head->data;
node *s=head;
head=head->next;
delete s;
ind--;
return d;
}
template void stack::push(T d){
if(i... 阅读全帖
b******7
发帖数: 92
40
来自主题: JobHunting版 - 求两个程序的C++ code
1. merger sort a single linked list
template
ListNode * mergeHelper(ListNode * left, ListNode * right)
{
assert(left != NULL && right != NULL);
ListNode * head = NULL;
if(left->val < right->val)
{
head = left;
left = left->next;
}
else
{
head = right;
right = right->next;
}
while( left != NULL && right != NULL)
{
if(left->val < right->val)
{
... 阅读全帖

发帖数: 1
41
来自主题: JobHunting版 - 分享一些经验
看到有很多被雷的话题(当然很多被雷者不是水平问题),忍不住想说几句,虽然在美国
很多人刷题进大公司,但能刷下来的就应该不笨。最近刚刚经历了一次久违了的Onsite
,虽然面的很差,但也有机会真实体验了一把招聘的具体流程,再结合最近的一些话题
,想说一些供新人们参考。
本人从后台到前端,涉猎范围很广,曾并行参加10多个项目(新开发和维护同时)。无论
到哪个项目,别说被雷,一旦进去,想出来都很困难。为什么呢,就是一句话,能出活
。我知道这里有太多牛掰的大公司,有的是钱,顾你是来做Research的,不是为了做具
体的产品,这种情况不是我要讲的。
其实找工作和实际工作真的是两回事。举个例子,算法很好,但那都是人研究完的,工
作中没时间冥思苦想这些东西,拿来用就可以了,如果你别出心裁弄出一些新东西,是
需要大量时间来检验的。作为一个Software Engineer,要做的是收集需求,设计并实
现它,最后保质保量产品上线。被雷的基本都是问题出现在设计和编码上,但设计和编
码其实也是不能分开来谈的。老司机们各有各的本领,这里只想给新手们一些提示。怎
么才能在工作中提高个人的开发效率呢,这里我只想... 阅读全帖
l******h
发帖数: 2
42
Highly reputational company with very competitive compensation for all
positions.
Please send in your resume and position/positions you like to apply to my
email address below.
h*******[email protected]
All resumes will be deliver to hiring manager directly. Act fast!
Thanks!
Silicon Engineering Group
Sr. Physical Design Timing Engineer
Timing (STA) Manager
Senior Physical Design Engineer
CAD Manager - Front-End Design and Verification
Sr. CAD Engineer - Place & Route / Physical Design Engineer
Sr. CA... 阅读全帖
i******m
发帖数: 2591
43
google以下步骤,牛牛们看看说得靠铺吗?
Steps:
1. Measure the dimensions of your backsplash. Using a large sheet of paper
or cardboard, transfer the measurements to the paper, then use scissors to
cut a template. Set the template in place and tweak it until it fits the
backsplash area perfectly.
2. Use the tile snips to break off even-sized pieces of the china plates and
cups.
Laying the tile on a template helps you create a master design.
3. Lay the template on the floor or other large horizontal surface.
4. Cr

发帖数: 1
44
来自主题: Returnee版 - 中国骨干人才正在流失海外
12月27日 为什么我要替中国辩护
我要替中国辩护,并不是因为我是一个中国人,而是因为我知道中国就和这世界上绝大
数的国家一样,虽然有很多丑陋的现象,但是他们是受害者。就
象这个犯罪集团里很多的人一样,他们来自各种种族,他们可能充当了工具,但他们不
是制造这一切,谋划这一切的人。虽然经常会暴露中国产品出现问题。但要知道中国是
世界工厂,他们只是打工者,他们只是按照各种雇主提供的配方来生产,他们并不知道
他们会产生怎样的后果。或者这些工人知道后果,但他们只是奴隶,他们又如何去改变
这一切? 所以,当我的调查不断往前推进的时候,不可避免地会涉及各国的企业,但
这并不表明是针对这个国家或这个国家的人民,而是针对一种社会现实和丑陋现象。就
拿菲律宾来说,菲律宾是一个犯罪猖獗的国家,有很多犯罪分子,但是菲律宾人民却是
这个集团的受害者,他们/她们被绑架,沦为了牺牲品,人体实验对象。一个日本人,
强奸上千名菲律宾女孩,却没有受到惩罚。以前我也提到过,有20个国家的名单,这20
个国家的人民其实都是受害者。现在他们把矛头对准中国,或许仅仅是因为我揭示了他
们图害世界人民的内幕,而我是一个中国人的缘... 阅读全帖
P***0
发帖数: 368
45
short answer is Yes.
They will file with the state the same (or next business day). But in many
states, standard processing time is longer than 7 days. So, after you file
it, regardless whether your filing approves or not, cancel that plan.
Good thing for using them is there are tons of free templates, for example
by-laws, certificate templates... you could use initially, until you get
somebody and money to invest on. Create and download them in that 7-day
window. As a fee-free member, you h... 阅读全帖
P***0
发帖数: 368
46
short answer is Yes.
They will file with the state the same (or next business day). But in many
states, standard processing time is longer than 7 days. So, after you file
it, regardless whether your filing approves or not, cancel that plan.
Good thing for using them is there are tons of free templates, for example
by-laws, certificate templates... you could use initially, until you get
somebody and money to invest on. Create and download them in that 7-day
window. As a fee-free member, you h... 阅读全帖
g**********p
发帖数: 1
47
来自主题: Immigration版 - 提供绿卡咨询及所有准备材料
Our team aim to provide our customers the best service and guidelines for
the green card application process. We focus on service with our customers
from science/engineering major with PhD/Master Degree, who are planning to
apply through the EB1a/EB1b or EB2/NIW process.
Our team has 4 professional members all with PhD degrees in the majors of
science or engineering. Each of us has goon through the EB1/NIW application
process by ourselves and has accumulated a lot of experience. We understand
th... 阅读全帖
s**********g
发帖数: 14942
48
来自主题: Immigration版 - 联系推荐人,求建议
我觉得别再这么问了
要么move on
要么直接draft一个template附上
对方想答应的话,看到实物应该会比较心理有数
要是我的话,对方第一封回复之后
我就会说好呀好呀太感谢了
然后附上一个template说由于USCIS有很多麻烦的要求,老大您可以参照这个template
参考参考
至于对方听不听那我就管不了了,毕竟说不定对方一看这么麻烦就直接听话上template

发帖数: 1
49
TSC EB1A,文章8篇 ,n篇conference (律师不让提),citation 近300,review 20
, 3年薄厚,有个小奖和国内小媒体报道,整个case极度平庸,3月底提交,追加PP,8
天后被RFE,非常紧张,律师说这个IO同学不是杀手,回复RFE,8天后律师今天通知
approved,特地把那个approva写得巨大,开心,也谢谢大家的bless。
申请的时候版上潜水,学了不少,在此一并谢过前辈,也分享一下自己的经验,祝大家
也心想事成。
先说整个case准备吧,强烈建议通过看版上人的经验,或者自己读相关文件,一定要对
考试大纲有个把握,这样有的放矢地准备,事半功倍,万不可全想着靠律师。这是我最
初准备的时候犯的最大错误,律师让写准备资料,我也没有明白什么样的资料最有利,
花了两个月,整了一堆没用的。
准备材料是整个case申请的灵魂,推荐信和后面的PL都要从你自己写的材料总结上来。
材料总结挖亮点,个人认为要“稳准狠”。“准”是说要投USCIS所好,对NSC我不太清
楚,TSC是重应用,应用怎么来,我个人认为有三个方向,对学界来说最好找的应用是
其他研究如何收... 阅读全帖
t*****r
发帖数: 4431
50
来自主题: Seattle版 - Share the Ride to Events with Go Redmond
分享一下:
Do you have a pretty regular commute schedule? Save some time and set up a
Trip Log Template on Go Redmond. The system will automatically add these
trips to your calendar.
Follow these steps to add a Trip Log Template on your account:
Login, go to your calendar and click "Add Trip Log Template"
Enter the details of your regular commute & click save
Confirm your trips at the end of the week or month by going to your calendar
. Once confirmed the Trip Log Template will add them to your cale... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)