Redian新闻
>
精神病人的绘画作品 (转载)
avatar
精神病人的绘画作品 (转载)# Joke - 肚皮舞运动
w*x
1
怎么写vector>的iterator?
只能用stl的iterator不能用下标, 考虑空vector.
很难写啊感觉,哪位能丢个代码看看? 谢谢
avatar
l*i
2
今天listing agent来 给了些document要签字
有一条是要和她list半年
这样正常吗 我们不想拖这么久 3个月的合同是否合理呢
希望有经验的朋友指点一下 谢谢
avatar
b*s
3
【 以下文字转载自 CanadaNews 讨论区 】
发信人: blueforpus (Little Bo), 信区: CanadaNews
标 题: 精神病人的绘画作品
发信站: BBS 未名空间站 (Mon Jun 4 21:10:46 2012, 美东)
avatar
h*6
4
在这个版上见过这题
avatar
x*g
5
There should have a term that you can withdraw from the market if you want
to. Read it through, to see if there is any penalty to do that. If it is a
big company, typicall you can withdraw without any problem.
avatar
H*g
6
大部分水平都很高啊
avatar
S*I
7
找个STL implementation的源代码看看不就知道了。

【在 w****x 的大作中提到】
: 怎么写vector>的iterator?
: 只能用stl的iterator不能用下标, 考虑空vector.
: 很难写啊感觉,哪位能丢个代码看看? 谢谢

avatar
l*i
8
谢谢回复 我们房子是一定要卖的 因为工作关系要relocate
现在就是打算如果3个月不好卖的话 考虑换listing agent的事情
会不会想多了

【在 x*******g 的大作中提到】
: There should have a term that you can withdraw from the market if you want
: to. Read it through, to see if there is any penalty to do that. If it is a
: big company, typicall you can withdraw without any problem.

avatar
M*n
9
艺术果然来自癫狂啊

【在 b********s 的大作中提到】
: 【 以下文字转载自 CanadaNews 讨论区 】
: 发信人: blueforpus (Little Bo), 信区: CanadaNews
: 标 题: 精神病人的绘画作品
: 发信站: BBS 未名空间站 (Mon Jun 4 21:10:46 2012, 美东)

avatar
w*x
10

是vector不是vector

【在 S**I 的大作中提到】
: 找个STL implementation的源代码看看不就知道了。
avatar
x*g
11
No. you are absolutely right to consider that. But changing listing agent is
not so easy. The contract typically will list something like if the deal is
closed n month (can be 3) from the listing, then you should still pay the
listing agent....

【在 l****i 的大作中提到】
: 谢谢回复 我们房子是一定要卖的 因为工作关系要relocate
: 现在就是打算如果3个月不好卖的话 考虑换listing agent的事情
: 会不会想多了

avatar
m*g
12
水平很高
抽象派大师级的
avatar
S*I
13
你是说这个iterator要遍历所有的int元素?

【在 w****x 的大作中提到】
:
: 是vector不是vector

avatar
h*8
14
3个月的合同合理

【在 l****i 的大作中提到】
: 谢谢回复 我们房子是一定要卖的 因为工作关系要relocate
: 现在就是打算如果3个月不好卖的话 考虑换listing agent的事情
: 会不会想多了

avatar
s*a
15
老实说挺一般的,没什么感染力。
avatar
w*x
16

恩,要注意empty vector要跳过

【在 S**I 的大作中提到】
: 你是说这个iterator要遍历所有的int元素?
avatar
l*i
17
对 我仔细读了term
说是结束list 90天之内卖掉仍然要交commission
这个90天是比较普遍的时间吗  谢谢

is
is

【在 x*******g 的大作中提到】
: No. you are absolutely right to consider that. But changing listing agent is
: not so easy. The contract typically will list something like if the deal is
: closed n month (can be 3) from the listing, then you should still pay the
: listing agent....

avatar
n*9
19
can you sell it within 3 months?

【在 l****i 的大作中提到】
: 对 我仔细读了term
: 说是结束list 90天之内卖掉仍然要交commission
: 这个90天是比较普遍的时间吗  谢谢
:
: is
: is

avatar
d*a
20
我刚写了个,没怎么检查,欢迎探讨。
class Iterator{
public:
` Iterator(vector> &a) : v(a)
{
m_outer_iter = v.begin();

while (m_outer_iter != v.end())
{
if (m_outer_iter->size() != 0)
break;
else
m_outer_iter++;
}

if (m_outer_iter == v.end())
m_flag = false;
else
{
m_inner_iter = m_outer_iter->begin();
m_next = *m_inner_iter;
m_flag = true;
}

}
bool HasNext()
{
return m_flag;

}

int Next()
{
int result = m_next;

m_inner_iter++;

if (m_inner_iter == m_outer_iter->end())
{
m_outer_iter++;

while (m_outer_iter != v.end())
{
if (m_outer_iter->size() != 0)
{
m_inner_iter = m_outer_iter.begin();
break;
}
else
m_outer_iter++;
}
}

if (m_outer_iter != v.end())
{
m_next = *m_inner_iter;
m_flag = true;
}
else
m_flag = false;

return result;
}

private:
vector> &v;
vector>::iterator m_outer_iter;
vector::iterator m_inner_iter;
int m_next;
bool m_flag;
}
avatar
l*i
21
我不是说了吗 3个月卖不掉考虑换个realtor

【在 n*******9 的大作中提到】
: can you sell it within 3 months?
avatar
x*g
22
Yes. That is what I have in my contract. I asked the agent to add a sentence
to it .. something like only when the buyer have visited the house during
the original listing.
My agent is from
houlihan real estate

【在 l****i 的大作中提到】
: 对 我仔细读了term
: 说是结束list 90天之内卖掉仍然要交commission
: 这个90天是比较普遍的时间吗  谢谢
:
: is
: is

avatar
l*i
23
Really appreciate.

sentence

【在 x*******g 的大作中提到】
: Yes. That is what I have in my contract. I asked the agent to add a sentence
: to it .. something like only when the buyer have visited the house during
: the original listing.
: My agent is from
: houlihan real estate

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