题解 | #牛的品种排序IV#
牛的品种排序IV
https://www.nowcoder.com/practice/bd828af269cd493c86cc915389b02b9f
import java.util.*;
/*
* public class ListNode {
* int val;
* ListNode next = null;
* public ListNode(int val) {
* this.val = val;
* }
* }
*/
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param head ListNode类
* @return ListNode类
*/
public ListNode sortCowsIV (ListNode head) {
// write code here
if(head==null||head.next==null){
return head;
}
int m=0;
ListNode cur=head;
ListNode bu=head;
while(cur!=null){
if(cur.val==0){
m=m+1;
}
cur=cur.next;
}
System.out.println(m);
while(m>0){
if(bu.val==0){
m--;
bu=bu.next;
}else{
bu.val=bu.val-1;
m--;
bu=bu.next;
}
if(bu==null){
break;
}
}
while(bu!=null){
bu.val=1;
bu=bu.next;
}
return head;
}}
查看8道真题和解析