博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据结构——算法(030)(在所有小写字母串大写字母前排)
阅读量:6513 次
发布时间:2019-06-24

本文共 727 字,大约阅读时间需要 2 分钟。

【状态:本文仅限于自我总结和互动。还有希望你指出缺点。 联系邮箱:Mr_chenping@163.com】

题目:

有一个由大写和小写组成的字符串,如今须要对他进行改动,将当中的全部小写字母排在大写字母的前面

开辟足够少的空间,时间复杂度O(n)

题目分析:

1、字符串从新排序后没有要求保持曾经的顺序

2、用两个指针分别指向字符串头和尾。头指针指向每次指向大写字符,尾指针每次指向小写字母,然后交换两个指针内容就可以

算法实现:

#include 
#include
void str_proc(char *str){ int len = strlen(str); char *start = str; char *end = str + len - 1; char temp; while(start < end) { if(*start >= 'a' && *start <= 'z') { start++; continue; } if(*end >= 'A' && *end <= 'Z') { end--; continue; } { temp = *start; *start++ = *end; *end-- = temp; } }}int main(int argc, char *argv[]){ printf("%s----->", argv[1]); str_proc(argv[1]); printf("%s\n", argv[1]); return 0;}

版权声明:本文博客原创文章,博客,未经同意,不得转载。

你可能感兴趣的文章
Understanding Predicate Delegates in C#
查看>>
【javascript】ajax请求 编码问题导致的ie浏览器在输入中文文字后没有内容,而chrome正常搜到文字...
查看>>
车厢重组
查看>>
HTML5 web存储
查看>>
eclipse改变theme
查看>>
Git分支操作
查看>>
假期的宿舍(匈牙利算法)
查看>>
Codeforces Beta Round #13 E. Holes (分块)
查看>>
maven学习--1.安装与配置
查看>>
基于Selenium的自动化测试框架 - SeLion学习之一(基本介绍)
查看>>
学习IIS & MVC的运行原理 (转)
查看>>
最小花费
查看>>
json
查看>>
迷宫 洛谷 p1605
查看>>
【hdu - 1016 Prime Ring Problem(巨水、、竟被PE虐,后而编程WA。怒之!!!)】
查看>>
Jenkins 构建方式有几种
查看>>
程序员修炼之道读后感1
查看>>
work flow 工作流程
查看>>
闭包实例
查看>>
springboot-dokcer
查看>>