Redian新闻
>
求合作: RBPJ deficient embryonic stem cell line
avatar
求合作: RBPJ deficient embryonic stem cell line# Biology - 生物学
o*e
1
Given a set of positive and negative integers group all the positive
integers on one side and negative integers on one side...
numbers should be in the same order they appear....
Any O(N) algorithm without using extra space?
avatar
X*n
2
谁有RBPJ deficient embryonic stem cell line, 求合作。
请站内联系。
avatar
d*t
3
这不就是quicksort的第一步吗?
avatar
d*t
4
void group(int* a, int length)
{
int i=0;
int j= length-1;
while(i{
while(a[i]<0)
i++;
while(a[j]>0)
j--;
if(i{
swap(a[i], a[j]);
j--;
i++;
}
}
}
avatar
o*e
5
quicksort doesn't work here.
"numbers should be in the same order they appear"

【在 d*****t 的大作中提到】
: void group(int* a, int length)
: {
: int i=0;
: int j= length-1;
: while(i: {
: while(a[i]<0)
: i++;
: while(a[j]>0)
: j--;

avatar
h*d
6
这样可以吗?
先数一下positive 的个数m
然后两个指针i, j分别从0 和 m开始,i 如果碰到负数就和 j 碰到的第一个正数对调,直
到走完

【在 o*****e 的大作中提到】
: Given a set of positive and negative integers group all the positive
: integers on one side and negative integers on one side...
: numbers should be in the same order they appear....
: Any O(N) algorithm without using extra space?

avatar
c*t
7
只想到用链表可以实现,用数组还没想出来
avatar
h*d
8
是,刚才把程序写了一下,顺序还是有问题

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