d*****r 发帖数: 39446 | 1 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Mon Oct 24 23:40:39 2011 类别:单选
⊙ 主题:Game 5: STL @ TEX
⊙ 博彩题目描述:
STL, TEX Tied 2-2
【打对勾者为正确选项】
√(1) Rangers
(2) Cardinals |
|
d*****r 发帖数: 39446 | 2 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Fri Oct 28 00:40:53 2011 类别:单选
⊙ 主题:Game 6: TEX @ STL Oct.26
⊙ 博彩题目描述:
Game 6: TEX @ STL, 8:05PM, Oct. 26, 2011
【打对勾者为正确选项】
(1) Rangers
√(2) Cardinals |
|
d*****r 发帖数: 39446 | 3 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Sun May 29 12:24:54 2016 类别:单选
⊙ 主题:MLB: STL > WAS @2.90
⊙ 博彩题目描述:
Probable Pitchers: (STL) Michael Wacha (R) (WAS) Stephen Strasburg (R)
【选项如下】
(1) 玩家
(2) 赌场
(3) 没收 |
|
d*****r 发帖数: 39446 | 4 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Thu Nov 29 23:08:16 2007 类别:单选
⊙ 主题:Atl+3.5 v Stl
⊙ 博彩题目描述:
【选项如下】
(1) Atl cover
(2) Stl cover
(3) zhuang
(4) bk |
|
d*****r 发帖数: 39446 | 5 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Fri Dec 14 18:46:47 2007 类别:单选
⊙ 主题:GB-8.5 v Stl
⊙ 博彩题目描述:
【选项如下】
(1) GB
(2) STL
(3) zhuang
(4) bk |
|
d*****r 发帖数: 39446 | 6 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Sun Dec 16 18:59:51 2007 类别:单选
⊙ 主题:GB-8.5 v Stl
⊙ 博彩题目描述:
【打对勾者为正确选项】
√(1) GB
(2) STL
(3) zhuang
(4) bk |
|
d*****r 发帖数: 39446 | 7 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Thu Dec 20 09:22:28 2007 类别:单选
⊙ 主题:Pitt -8.5 v Stl
⊙ 博彩题目描述:
Golden State Warriors-Washington Wizards /219.5
【选项如下】
(1) Pitt
(2) Stl
(3) zhuang
(4) bk |
|
d*****r 发帖数: 39446 | 8 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Tue Dec 25 23:06:22 2007 类别:单选
⊙ 主题:Stl+6.5 v Arz
⊙ 博彩题目描述:
【选项如下】
(1) Stl
(2) Arz
(3) zhuang
(4) bk |
|
d*****r 发帖数: 39446 | 9 【此篇文章是由自动发信系统所张贴】
⊙ 博彩开启于:Sun Dec 30 02:31:36 2007 类别:单选
⊙ 主题:Stl+6.5 v Arz
⊙ 博彩题目描述:
【打对勾者为正确选项】
√(1) Stl
(2) Arz
(3) zhuang
(4) bk |
|
S***n 发帖数: 31 | 10 需要用C++编一些 data structure 的程序,是直接用STL还是自己编呢?
大家一般都直接用STL么?请高手指点 |
|
b***n 发帖数: 590 | 11 member functions of the C++ (SGI STL, according to Hou's book)
STL list container:
void pop_front() {erase(begin());}
void pop_back() {iterator tmp=end(); erase(--tmp);}
For the pop_back(), why not juse write as:
void pop_back() {erase(--end());}
looks like it should also work.
Thanks! |
|
|
t****t 发帖数: 6806 | 13 没看懂。你确定你说的是STL?stl的vector有啥运算?
你要转换的话,user-defined conversion function不够用吗? |
|
r*******y 发帖数: 290 | 14 STL containers: implemented data structures
STL algorithms: implemented algorithms |
|
t****t 发帖数: 6806 | 15 为什么不profile,STL不是code?
出现得多了正说明你STL用得多.想法减少凋用次数.
另外你不开-O2的?
gprof |
|
S*****n 发帖数: 227 | 16 从书本学那是太痛苦了。
想简单快速的学用stl,从网上、现实中找问题的例子,
自己用你熟悉的写法写一遍,再看看用stl怎么写
为什么人家写的简单了。
看看自己的code如何改进,然后就懂了。 |
|
i*****s 发帖数: 438 | 17 How is map implemented in STL?
is map a suitable data structure to write a dictionary in STL? |
|
i***0 发帖数: 37 | 18 【 以下文字转载自 JobHunting 讨论区 】
发信人: iq300 (iq300), 信区: JobHunting
标 题: If using C++, please avoid the use of STL for these questions.
发信站: BBS 未名空间站 (Wed Mar 5 17:26:08 2008)
If using C++, please avoid the use of STL for these questions.
Array Rotation
You should be able to do this in less than linear time.
Implement the following function, FindSortedArrayRotation, which takes as
its input an array of unique integers that has been sorted in ascending
order, then rotated by an unknown amount X wher |
|
p***o 发帖数: 1252 | 19 嗯,其实这题用来考STL比现在这样不让用STL要难。 |
|
t****t 发帖数: 6806 | 20 while (!vsn.empty() && vsn.back().count<2) vsn.pop_back();
因为你不能保证vsn.back()总是存在, 所以你要先看它是不是空的.
如果你知道一个iterator a, 要从这个iterator一直删到最后, 可以写
vsn.erase(a, vsn.end());
std::remove不是删除元素用的, 是把要删的元素交换到range的最后. 删除用
container.erase(). 所以对于vector, 可以这样用:
vsn.erase(remove(vsn.begin(), vsn.end(), your_condition), vsn.end());
这些在effective STL里都有...STL虽然很容易用, 但是完全不看手册光凭函数名想当
然, 也是不行的. |
|
l***e 发帖数: 480 | 21 感谢。
另外。就是有没有好的书推荐,讲STL。
主要关于如何用这些容器,自定义各种运算。
每个逻辑依赖哪个运算。
我手上有几本书名都是有关STL的。可是,基本元素很多都是整数.
等到自己用结构作元素类型时,不知该定义哪个运算。
当然,有电子版最好。 |
|
l***e 发帖数: 480 | 22 就是有没有好的书推荐,讲STL。
主要关于如何用这些容器,自定义各种运算。
每个逻辑依赖哪个运算。
我手上有几本书名都是有关STL的。可是,例子里的基本元素很多都是整数.
等到自己用结构作元素类型时,不知该定义哪个运算。
当然,有电子版最好。 |
|
I****k 发帖数: 35 | 23 In STL, Sort algorithm take two iterator parameters, can we pass two
points to begin/end of an array to Sort algorithm in STL? why? |
|
x****t 发帖数: 389 | 24 我有两个数组A[n]和B[n],A中的任何元素都和B中的相对应。
如果我用STL中的sort把数组A[n]中的元素重新从大到小排序,请问STL有没有什么方法
把B[n]中元素位置也对应移动?B[n]中的元素是不是从大到小无关紧要,只要每个元素
的位置还是和A[n]中的仍然对应就好!
请指教,谢谢!! |
|
c**a 发帖数: 316 | 25 Effective STL 我只有老版本的, 不知道新的 那个 Kindle 版有什么不同。
还有什么好的 STL 的书?
谢谢? |
|
k****r 发帖数: 176 | 26 Standard Template Library Programmer's Guide
C++ Standard Library, The: A Tutorial and Reference
Effective STL
Extended STL |
|
t****t 发帖数: 6806 | 27 qsort is not a part of STL. STL is standard template library. qsort is not
template... |
|
s*******e 发帖数: 664 | 28 ☆─────────────────────────────────────☆
nobond (potato) 于 (Wed Sep 9 18:41:15 2009, 美东) 提到:
临时写个小程序,准备用STL的map,不知道效率咋样,对于一般程序而言,应该可以吧?
好像听说过专业的程序员都不用stl来着。
☆─────────────────────────────────────☆
nobond (potato) 于 (Wed Sep 9 18:44:16 2009, 美东) 提到:
对了,这个是用来处理mesh data的,最终send 给open-gl来处理。
☆─────────────────────────────────────☆
SLWY (松林物语) 于 (Wed Sep 9 18:51:33 2009, 美东) 提到:
好像是red-black tree实现的
吧?
☆─────────────────────────────────────☆
SETI (天青如水,飞龙在天) 于 (Wed Sep 9 18:53 |
|
g******r 发帖数: 213 | 29 in that case, even C++ is not an option, why bother stl? |
|
s*****w 发帖数: 1527 | 30 this is good, because i want to use stl in the kernel code,
at the same time hope to keep the kernel small. |
|
z***e 发帖数: 5393 | 31 ????those stl allocator can work in kernel? |
|
h***r 发帖数: 726 | 32 如果一个函数的参数是vector等stl的东西时,
在gdb用s (step into)就会进入stl源代码。
如何避免进入源代码?
用nm + strip还是不能解决问题,有些东西strip不掉.
谢谢! |
|
b******n 发帖数: 592 | 33 end is not null, it points to *after* last item. you have to take care of
iterators when you modify stl container. Why do you need a list of iterators
.
and potentially dangerous?
defined doubly linked list and the initial value NULL for X elements. I
expect a stl based solution can achieve similar behaviour. |
|
s*****s 发帖数: 94 | 34 【 以下文字转载自 JobHunting 讨论区 】
发信人: stacies (peanut), 信区: JobHunting
标 题: 请教MinHeap用STL实现
发信站: BBS 未名空间站 (Thu Jun 9 20:30:30 2011, 美东)
c++ STL中的Priority queue直接可以实现MaxHeap。
有什么简单的方向实现MinHeap么?
发现面试题中有时候会需要用到MinHeap,但是不是主要考察MinHeap,所以不想现场把大
量的时间花在
实现MinHeap上 |
|
t****t 发帖数: 6806 | 35 if you want to use iostream and stl (BTW iostream is a part of stl), you don
't have to be jin tong. jin tong is for library writer who want to extend
the library. normal user just call functions. |
|
t****t 发帖数: 6806 | 36 you answered yourself, STL map is not hash map since it keeps order. usually
STL map is implemented in R-B tree, but there is no strict requirement for
this.
require |
|
b*******s 发帖数: 5216 | 37 not1 和 not2是stl提供的negation function,
分别用于一元和二元函数
但是更多元的怎么办? :) 是不是有点蠢的问题? 我知道一般性stl algorithm就是到
2元最多了,但是万一要三元函数呢? |
|
b*******s 发帖数: 5216 | 38 not1 和 not2是stl提供的negation function,
分别用于一元和二元函数
但是更多元的怎么办? :) 是不是有点蠢的问题? 我知道一般性stl algorithm就是到
2元最多了,但是万一要三元函数呢? |
|
d******i 发帖数: 7160 | 39 背景是想做k个最小值的维护,用了k-size的大顶堆。
本来逻辑上是顺畅的:
新元素比堆顶大,直接pass;
o/w替换堆顶,做个ShiftDown维护。
按说复杂度log2(k)吧,撑死找条path走到底。
代码当然可以写,但还是指望STL堆函数给点捷径,结果很失望。
貌似只能先pop_heap清掉,再入尾后push_heap,非得整理两次不可,代码如下:
//remove the old top one, since no longer qualify
pop_heap(vmo1.begin(),vmo1.end(),classcmp);
vmo1.pop_back();
//insert the new one, since must qualify
vmo1.push_back(*ivmo); //*ivmo是比堆顶小的新元素
push_heap(vmo1.begin(),vmo1.end(),classcmp);
复杂度一下子double了,成了2*log2(k)。
当然可以用复杂度k的make_heap,就不提了。
有没有利用STL现有堆函数实现这个ShiftDown的简单... 阅读全帖 |
|
d******i 发帖数: 7160 | 40 Please note we are talking about how pop_heap asks, not how we think or
understand. It's not our problem why STL's pop_heap function asks that. But
unfortuantely it has such a requirement. Then we'll suffer if we have to
rely on the STL's heap function.
If you still cannot get it, compile the code you give and verify it. Like I
said, I tried and it does not work. I think the reason has been quite
sufficiently clarified.
Just run your code to justify yourself, like what I did. It's not a place
ju... 阅读全帖 |
|
r*********r 发帖数: 3195 | 41 the GNU libstdc++ is not the best implementation to read STL's code.
take the SGI early implementation, it's much cleaner.
i enjoyed reading every line of it.
http://www.sgi.com/tech/stl/download.html |
|
p****n 发帖数: 69 | 42 It is understood that auto_ptr should not be used with STL container.
For example, it is seriously wrong to call sort from header to
sort a vector>, if the implementation uses quick sort and a
pivot, a copy of some element, is used.
Unique_ptr has the same feature of taking ownership when copying as auto_ptr
. I know that unique_ptr's assignment operator uses rvalue reference, but
the same problem in the above example remains: the pivot takes ownership of
some element, ... 阅读全帖 |
|
r***l 发帖数: 9084 | 43 这个比较奇怪,都是从2d到stl,你这个是reverse reverse-engineering
如果找不到自动的软件,提供一个办法
把stl文件转换为tecplot可以读的格式,读入tecplot后,切出想要的多个slice. 然后
在tecplot 2D界面上显示出切出的slice线,一个一个导出图片,再去photoshop里面自
己填充图片。当然图片或许需要调整大小,这个可以在tecplot里面显示坐标作为参照
物,然后到photoshop里面再调整。其实整个过程也不麻烦。 |
|
发帖数: 1 | 44 C++ STL跟 Java Python
没有可比性
C++才和java python比 |
|
发帖数: 1 | 45 c# linq 比python和stl牛逼多了 |
|
z**********g 发帖数: 10 | 46 求购里程:6月末回国,8月18前后三天返回,STL-BEIJING。thx very much |
|
m*****o 发帖数: 2578 | 47 我想要的物品:
SFO to STL round ticket 300
单张面值:
可接受的价格(必须明码标价!):
300
物品新旧要求:
New
邮寄方式要求:
COde
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
boa/paypal
其他补充说明:
4/29 6pm之后或者4/30早上走,5/1下午返回
广告的有效期:
till got
物品来源:
我的联系方式:
PM
二手交易风险自负!请自行验证是否合法和一手卡!: |
|
m*****o 发帖数: 2578 | 48 我想要的物品:
SFO to STL round ticket 350 each
单张面值:
可接受的价格(必须明码标价!):
350
物品新旧要求:
邮寄方式要求:
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
boa/billpay
其他补充说明:
5/28-5/30
广告的有效期:
物品来源:
我的联系方式:
PM
二手交易风险自负!请自行验证是否合法和一手卡!: |
|
l*****a 发帖数: 3630 | 49 时间大约是7月初离开STL,大概20-25天后从PEK返回。
请代理站内信联系。谢谢。 |
|
l*********r 发帖数: 85 | 50 求购2张成人从圣路易斯STL-香港HKG的机票。
启程7月上旬,回程7月底,具体日期灵活。
到达香港需晚上7点半之前,回程从香港起飞需要中午12点以后,其他时间灵活,
不在机场过夜。
请站内报价,非常感谢。 |
|