#include<iostream> #include<stdio.h> using namespace std; const int MAX = 20000;//最大输入文本长度为10,000 unsigned char In[MAX + 1]; //输入文本的字节存储形式 unsigned int Out[MAX / 2 + 1]; //输出编码,以4个字节存储 int len=0; //文本数据的长度 int len_of_str = 0; //字节数组的长度 //计算文本数据的长度并保证其不大于10,000 int lenth(unsigned char* a) { int cnt = 0; while (*a != NULL) { cnt++; a++; if (cnt >= MAX) break; } return cnt/2; } //查找与传入字或标点符号相同的字(往后索引,避免重复) int find_same(unsigned char* a,unsigned char b,unsigned char c,int b_i,int len_a) { for (int i = b_i+2; i < len_a; i++) { if (b == a[i]&&c==a[i+1]) return i/2; } return -1; } //数组a为输入,b为编码后的数组 void code(unsigned char* a, unsigned int* b,int len_a,int len_b) { for (int i = 0; i < len_b; i ++) { b[i] = i; } for (int i = 0; i < len_a; i += 2) { int j = find_same(a, a[i], a[i + 1], i, len_a); if (j == -1||b[j] == b[i]) { continue; } b[j] = b[i/2]; } } int main() { int i = 0; //读取不定长度的文本 while(scanf_s("%c", &In[i], unsigned int(sizeof(In[i])))) { if (In[i] == '\n') break; i++; } len = lenth(In); len_of_str = len * 2 + 1; code(In, Out, len_of_str, len); for (int i = 0; i < len; i++) cout << Out[i] << " "; cout <<endl<< "传输数据的大小为:"<<len << endl; system("pause"); return 0; } 优化这段代码
时间: 2024-04-21 17:28:31 浏览: 246
使用include <iostream>时一定要加using namespace std
1. 将使用的头文件放在代码文件的最开始,避免出现一些不必要的问题
2. 将常量MAX定义为20000,但是输入的文本数据的长度最大为10000,这里可以将MAX定义为10001,以便进行优化。
3. 由于In数组和Out数组的长度都是定值,可以直接用定义数组时的常量定义数组长度。
4. 可以将len_of_str的计算移到lenth函数中,避免重复计算。
5. 在函数中使用常量引用替代非常量引用,可以提高效率。
6. 在使用scanf_s时,第二个参数中不应该使用sizeof(In[i]),应该使用sizeof(In[0]),这里可以使用%u代替%c,提高效率。
7. 将数据类型无关的常量定义为const,可以提高代码的可读性。
8. 将代码块内的变量定义放在代码块的开头,避免出现一些不必要的问题。
综上所述,优化后的代码如下:
阅读全文