| ||||||||||||||||||||||||
#include <stdio.h> #include <ctype.h> int main() { char x[1024]; int n = 1; char *p; while (gets(x) && *x) { for (p = x; *p; ++p) { *p = toupper(*p); } for (p = x; *p; ++p) { if (*p == *(p + 1)) { ++n; } else { printf("(%c,%d)", *p, n); n = 1; } } printf("\n"); } return 0; } |
习题(12-5) 行程长度编码
原文作者:游程编码问题
原文地址: https://blog.csdn.net/caopeng_pku/article/details/40581815
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/caopeng_pku/article/details/40581815
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。