49题 Sort Letters by Case 字符大小写排序

本文介绍如何使用C#实现一个字符数组按大小写排序的in-place算法。通过实例讲解如何在Java、Python和C++中不同方式表示的字符数组中,先按小写字母排序,再按大写字母排序。重点展示Solution类中的sortLetters方法的详细步骤。
摘要由CSDN通过智能技术生成

Sort Letters by Case 字符大小写排序

Description
Given a string chars which contains only letters. Sort it by lower case first and upper case second. In different languages, chars will be given in different ways. For example, the string “abc” will be given in following ways:

Java: char[] chars = {‘a’, ‘b’, ‘c’};
Python:chars = [‘a’, ‘b’, ‘c’]
C++:string chars = “abc”;
You need to use an in-place algorithm to solve this problem.

public class Solution {
    /**
     * @param chars: The letter array you should sort by Case
     * @return: nothing
     */
    public void sortLetters(char[] chars) {
        // write your code here
        int left = 0 , right = chars.length -1 ;
        while(left < right){
          if(left < right && chars[left] <= 90 && chars[right] >= 97){
            char temp = chars[left] ;
            chars[left] = chars[right] ;
            chars[right] = temp ;
          }else if (left < right && chars[left] >= 97){
             left++ ;
          }else{
            right-- ;
          }
        }

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值