[C/C++笔面试]编程实现字符串中各单词的翻转
Posted zxnsirius
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C/C++笔面试]编程实现字符串中各单词的翻转相关的知识,希望对你有一定的参考价值。
/*********************************************************
- Copyright (C): 2016
- File name : revstr.c
- Author : - Zxn -
- Date : 2016年08月28日 星期日 10时35分39秒
- Description : 编程实现字符串中各单词的翻转
* *******************************************************/
#include <stdio.h>
void swap(char *strone, char *strtwo)
*strone ^= *strtwo;
*strtwo ^= *strone;
*strone ^= *strtwo;
void revstr(char *str)
char *start = str;
char *end = str;
ch
以上是关于[C/C++笔面试]编程实现字符串中各单词的翻转的主要内容,如果未能解决你的问题,请参考以下文章