首页 > 代码库 > 20140604
20140604
1、如在在word表格中打钩
符号->其他符号->字体(wingdings2)
2、循环右移
方法1:
#include<stdio.h> void move(char *s) //循环右移1位 { if(s==NULL) return; char *p=s,*q=s; char temp; while(*p!=‘\0‘) { p++; } p--; q=p-1; temp=*p; while(p!=s) { *p=*q; q--; p--; } *s=temp; } void LoopMove( char *pStr,int steps)//循环右移steps位 { int i=0; while(i<steps) { move(pStr); i++; } } void main() { char str[]="abcdef"; //char *str="abcdef"; 这里“abcdef”是常量,不能通过str指针修改常量值,这种写法错误 LoopMove(str,2); printf("%s",str); }
方法2:
#include<stdio.h> #include<string.h> #include<malloc.h> void LoopMove(char *pStr,int steps) { int len=strlen(pStr); int n=len-steps; char *temp=(char *)malloc(sizeof(char *)); strcpy(temp,pStr+n); strcpy(temp+steps,pStr); *(temp+len)=‘\0‘; strcpy(pStr,temp); } void main() { char str[]="abcdef"; LoopMove(str,2); printf("%s",str); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。