Redian新闻
>
五区的新农民做梦都想吃莴笋,谁卖我点种子?
avatar
五区的新农民做梦都想吃莴笋,谁卖我点种子?# gardening - 拈花惹草
E*0
1
// 2 4 7 6 3 1
// it1 it2 it3
// switch it1 and it3
// 2 6 7 4 3 1
// sort it2 to end
// 2 6 1 3 4 7
bool nextPermutation(vector &num) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
//If vector size is 1, permutation is its self.
if (1==num.size())
return true;
vector::iterator rit=num.end();
rit--;
vector::iterator it1,it2,it3;
// From right to left, find the it1 and it2 such that it1for ( ; rit >= num.begin(); rit-- )
{
it1=rit;
it2=rit;
if (it1==num.begin())
return false;
it1--;
if (*it1break;
}
// From it2 to right, find it3 such that it1 > it3+1 but it1 < it3.
for (it3=it2;it3{
if (*it3break;
}
it3--;
//switch it1 and it3.
int tmp=*it1;
*it1=*it3;
*it3=tmp;
//sort from it1+1 to end.
sort(++it1,num.end());
return true;
}
avatar
w*e
2
区长现在种秋莴笋是不是太晚了?最近天气就在60-80晃,是不是不够暖和啊?如果够
暖和,谁有可以吃上笋的种子卖我点呗!
谢谢啦!
avatar
T*m
4
现在有点迟了,但现在开始种,应该能吃点小莴笋和叶子的。

【在 w********e 的大作中提到】
: 区长现在种秋莴笋是不是太晚了?最近天气就在60-80晃,是不是不够暖和啊?如果够
: 暖和,谁有可以吃上笋的种子卖我点呗!
: 谢谢啦!

avatar
w*e
5
谢谢楼上两位啦。这个夏天帮老妈管理她的菜园子(老妈回国逍遥自在去了),竟然有
点中菜上瘾了。理解我妈为啥没事就在她的菜地晃悠了。现在想种点秋菜,等老妈11月
回来时说不定还能看到点成果呢,不行我给盖点塑料膜啥的。。。 :)
avatar
T*n
6
很多菜秋季可以播种种第二轮了

【在 w********e 的大作中提到】
: 谢谢楼上两位啦。这个夏天帮老妈管理她的菜园子(老妈回国逍遥自在去了),竟然有
: 点中菜上瘾了。理解我妈为啥没事就在她的菜地晃悠了。现在想种点秋菜,等老妈11月
: 回来时说不定还能看到点成果呢,不行我给盖点塑料膜啥的。。。 :)

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