由买买提看人间百态

topics

全部话题 - 话题: tr1
首页 上页 1 2 (共2页)
i*********5
发帖数: 19210
1
来自主题: Running版 - 冰球手能跑多块的marathon?
Men's Top 10
他跑步也巨快,不过去年Pete Jacobs比他还快两分钟。2:44:03 vs 2:42:29
-------FINAL------ -------------------------------- ------------ -- --- ---
---------------- ---- 2.4 mi 112 mi
26.2 mi

Category --------SWIM---------- ----- ----------BIKE--------
- ----- ---------RUN----------
Pos Time Name City St... 阅读全帖
h***9
发帖数: 8948
2
来自主题: TVGame版 - 问下amazon的trade-in
TR1-XXXXX-XXXX585
6/29/10
Wii Sports
Platform: Nintendo Wii
1 $7.50 Gift Card
Deposited
真相在此
h*******u
发帖数: 15326
3
来自主题: PhotoGear版 - 说道C语言
现在直接上tr1, stl不够用,连hash表都没有
s*****e
发帖数: 21415
4
来自主题: PhotoGear版 - 说道C语言
tr1也属于广义的stl吧
连boost也是
h***r
发帖数: 726
5
来自主题: Apple版 - xcode for leopard BUG??? help.
I use tr1/unordered_map
if mymap is const unordered_map&
mymap.find("str1");
would say "discards qualifiers".
How to fix this?
It runs great on linux.
f*****Q
发帖数: 1912
6
来自主题: Apple版 - xcode for leopard BUG??? help.
俺有印象好像tr1/unordered_set是gcc4.3才支持的。

9.
h***r
发帖数: 726
7
来自主题: Apple版 - Mac下编程感想
抱怨一句,
我用mac os x 10.5, gcc 版本太低, 对tr1下的支持超级弱!郁闷。
p*******n
发帖数: 4824
8
来自主题: Apple版 - Mac下编程感想
嗯, 这是osx的问题, gcc版本更新总是滞后, 就算10.6下, tr1也不完整
r*********r
发帖数: 3195
9
来自主题: Apple版 - Mac下编程感想
用 boost 的 tr1 不就行了么?
snow leopard 的运行/编译环境确实是复杂了点, 应为是过渡版本.
内核可运行 32 bit / 64 bit 两个版本, gcc 生成的代码也可以是 32位, 或64位.
很多人会被搞晕的.
t****t
发帖数: 6806
10
来自主题: Programming版 - 问一个C++ template的问题
what about just use
std::tr1::is_same::value
s*******e
发帖数: 28
11
来自主题: Programming版 - 一个小问题
auto_ptr in the Standard library doesn't have the normal copy behavior
because of the feature of transfer of ownership. Thus it can't be used
in the containers in STL which require normal copy function.
However, shared_ptr in TR1 or Boost is one smart pointer that uses reference
count and has normal behavior of copying. It can be used for STL.
k*n
发帖数: 1203
12
来自主题: Programming版 - c+= 怎么实现 hashtable 的?
TR1::unordered_map, unordered_set
will soon be in standard.
h**o
发帖数: 347
13
来自主题: Programming版 - a C++ question
is this safe?
should he use tr1::function?
p****o
发帖数: 1340
14
来自主题: Programming版 - a C++ question
it is of course safe, and dirty fast.
tr1::function is okay -- it is similar to mem_fun (i actually don't
know much about it), but it is too fancy. anyway, we write code to
solve problems.
k**f
发帖数: 372
15
Make sure your C++ book cover the language standard and the standard C++
library. You may also want to search for C++ TR1, which include the
candidate to be added to the next revision of standard C++ library.
l********s
发帖数: 358
16
Effective C++第三版和第二版就差很多,加了很多STL和C++ TR1的相关内容
k**f
发帖数: 372
17
来自主题: Programming版 - 请问delete的问题
If possible, you should use new in constructors and delete in desstructors.
So at the end of your program, all the allocated memory will be released.
If you use the right library, such as STL containers, and the right type of
smart pointers (look for them in boost.org or search "C++ TR1"), you seldom
need to use new and delete in your code. Then you don't have to worry about
memory leak caused by unmatched new and delete.
r*********r
发帖数: 3195
18
来自主题: Programming版 - 这里的人用BOOST都是用来做什么?
the most important components have been included in TR1:
smart pointers
tuple
unordered_map
function, bind
various random number generators
c*********3
发帖数: 197
19
来自主题: Programming版 - GCC TR1 实现regex 没?
如题。
谢谢
g***l
发帖数: 3142
20
谢谢
我用的是tr1
vs 2005
今天刚装上
正在研究
h***r
发帖数: 726
21
来自主题: Programming版 - xcode for leopard BUG??? help.
【 以下文字转载自 Apple 讨论区 】
发信人: haier (no nickname), 信区: Apple
标 题: xcode for leopard BUG??? help.
发信站: BBS 未名空间站 (Tue Dec 8 15:09:47 2009, 美东)
I use tr1/unordered_map
if mymap is const unordered_map&
mymap.find("str1");
would say "discards qualifiers".
How to fix this?
It runs great on linux.
r*********r
发帖数: 3195
22
tr1 的先搞搞清楚
t****t
发帖数: 6806
23
初学者还是不要用auto_ptr的好, 一不小心就错了. 可以说是步步陷阱.
直接用tr1::shared_ptr好了.
s*******e
发帖数: 664
24
来自主题: Programming版 - [合集] type traits is magic
☆─────────────────────────────────────☆
randomtiger (吃苹果的老虎) 于 (Tue Jan 19 12:26:24 2010, 美东) 提到:
interview 问个 is_class, is_convertible 大概怎么构造的问题,
答对率能有多少?
☆─────────────────────────────────────☆
PaulPierce (Paul) 于 (Tue Jan 19 19:27:35 2010, 美东) 提到:
全挂

☆─────────────────────────────────────☆
thrust (祝阳阳早日康复) 于 (Tue Jan 19 19:51:34 2010, 美东) 提到:
你这个问得太难了, 如果以前没有看过tr1源代码, 又研究过编译器, 99%是答不出的.
象is_class如果没有SFINAE支持就只有靠编译器本身支持了.
☆─────────────────────────────────────☆
random
t****t
发帖数: 6806
25
来自主题: Programming版 - 容器里边放指针怎么办?
不过你可以用std::tr1::reference_wrapper来包装一个引用, make it assignable
and copyconstructable.
t****t
发帖数: 6806
26
你这个不是一般的麻烦...我写了两次也没写对, 基本上用std::是不行了, 得用std::
tr1
p***o
发帖数: 1252
27

看起来像boost里的,不过tr1里可能有。
这种情况还是自己写functor把,用bind纯粹是为了废脑细胞。
h*******u
发帖数: 15326
28
从来没搞明白bind是咋整的
tr1现在随便用了?vc,g++都支持的怎么样了?
t****t
发帖数: 6806
29
呃, 这个抄并不是贬义了...意思就是说先有boost, 后有tr1.
z****e
发帖数: 2024
30
来自主题: Programming版 - C++的一个问题
probably void foo(vector &)
or
void foo(vector > smp);
arrays are very bad with polymorphism.
array arithmetic usually doesn't work when virtual call is involved.
z****e
发帖数: 2024
31
来自主题: Programming版 - tr1,问题
晚了,已经安装了,居然500多M,这么庞大???
t****t
发帖数: 6806
32
来自主题: Programming版 - tr1,问题
boost headers are in .
M*******i
发帖数: 82
33
来自主题: Programming版 - tr1,问题
what do you mean by 覆盖?
they are in different files and namespaces
k*******d
发帖数: 1340
34
来自主题: Programming版 - c++ interview: iterator 和 pointer区别?
我印象中iterator对resource allocation没怎么支持吧,它支持RAII?貌似不是,所以
,把他和tr1::shared_ptr等同是不够准确的,当然,如果说广义的smart pointer那的
确有联系
t****t
发帖数: 6806
35
来自主题: Programming版 - boost::proto 太爽了
shared_ptr直接用tr1就行了...
d****p
发帖数: 685
36
来自主题: Programming版 - boost::proto 太爽了
Unfortunately we have to support SunStudio CC which doesn't support tr1...
And we are struggling with messing around boost with various versions of
compilers :-(
y*c
发帖数: 904
37
来自主题: Programming版 - Using unordered_map in Visual Studio
我装了feature pack for VS 2008
#include
我的visual assist 也解析了关键字,说明header已经在哪里。但是debugger说 '
unordered_map' : undeclared identifier
请问怎么操作可以使用tr1在VS 2008中。谢谢!
y*c
发帖数: 904
38
来自主题: Programming版 - Using unordered_map in Visual Studio
It turns out I need to add
tr1::unordered_map
a********n
发帖数: 1287
39
来自主题: Programming版 - c++0x unordered_map vs sgi hash_map
Do you mean the std::tr1::unordered_map?
t****t
发帖数: 6806
40
来自主题: Programming版 - c++0x unordered_map vs sgi hash_map
he said 0x. std::tr1 is mostly merged into std in 0x, so yes it is the same
thing.
f******y
发帖数: 2971
41
来自主题: Programming版 - 请教c++ interface class问题
Effective C++ is using tr1? Which version are you reading?
w****o
发帖数: 2260
42
【 以下文字转载自 JobHunting 讨论区 】
发信人: winhao (勇敢的人), 信区: JobHunting
标 题: 问几个关于hash, map, set的问题
发信站: BBS 未名空间站 (Wed Mar 7 14:52:17 2012, 美东)
1. STL中的std::unordered_map是不是等同于(或者是类似)Java中的Hashmap?
2. STL中的std::map是不是等同于(或者是类似)Java中的Treemap?
3. STL中hashtable是哪个类实现的?Java中类似的哪个类叫什么名字?问的就是在STL
和Java下都是叫什么名字。
4. 为什么在我的linux机器上的目录/usr/include/c++/4.1.2下只有set, map而没有
multiset和multimap?你们的系统里有multiset和multimap吗?
另外我发现STL的unordered_map和unordered_set是定义在/usr/include/c++/4.1.2/
tr1下面的。
谢谢!
A**u
发帖数: 2458
43
o 可以直接 std::unordered_map?
我都用tr1::unordered_map

STL
t****t
发帖数: 6806
44
std::tr1 is merged into std in c++11.
w****o
发帖数: 2260
45
【 以下文字转载自 JobHunting 讨论区 】
发信人: winhao (勇敢的人), 信区: JobHunting
标 题: 问几个关于hash, map, set的问题
发信站: BBS 未名空间站 (Wed Mar 7 14:52:17 2012, 美东)
1. STL中的std::unordered_map是不是等同于(或者是类似)Java中的Hashmap?
2. STL中的std::map是不是等同于(或者是类似)Java中的Treemap?
3. STL中hashtable是哪个类实现的?Java中类似的哪个类叫什么名字?问的就是在STL
和Java下都是叫什么名字。
4. 为什么在我的linux机器上的目录/usr/include/c++/4.1.2下只有set, map而没有
multiset和multimap?你们的系统里有multiset和multimap吗?
另外我发现STL的unordered_map和unordered_set是定义在/usr/include/c++/4.1.2/
tr1下面的。
谢谢!
A**u
发帖数: 2458
46
o 可以直接 std::unordered_map?
我都用tr1::unordered_map

STL
t****t
发帖数: 6806
47
std::tr1 is merged into std in c++11.
w****o
发帖数: 2260
48
来自主题: Programming版 - 弱弱的问问hash, hashtable? (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: winhao (勇敢的人), 信区: JobHunting
标 题: 弱弱的问问hash, hashtable?
发信站: BBS 未名空间站 (Wed Mar 7 22:13:29 2012, 美东)
大概知道hash, hashtable的概念,主要是为了快速的lookup。
可是如果面试的时候被问到hash, hashtable,通常他们要考核的是什么?是要实现一个
好的hash fuction呢?还是要实现一个hashtable的class?
平时自己写代码的时候如果要用到一个hashtable,是不是可以用C++ STL tr1/
hashtable来当做一个hashtable?
看了下面的链接,说是C++新的标准定义了四类hashtable,分别叫 unordered_set,
unordered_map, unordered_multiset, unordered_multimap.这些是通常意义上的
hashtale吗?
http://en.wikipedia.org/wiki/C%2B%2B0x
这个... 阅读全帖
m*******l
发帖数: 12782
49
btw, C++98, c++03(mainly bug fix)
C++ TR1 (05?)
then C++11
and C++16 (17?)
between C++16
there will be annual releases
m*******l
发帖数: 12782
50
来自主题: Programming版 - how's the new c++ standard (c++11)
many c++11 features has been available many years ago
in the disguise of TR1
首页 上页 1 2 (共2页)