摘要:
#include#includeusing namespace std;int getLength(string str0);int main(){ int n, index=0; cin>>n; //define dynamic array string *str=new string[n]; /... 阅读全文
摘要:
一.动态数组 一般我们定义数组都是用下面的方式: int str[100]; 但对于一些需要手动输入数组大小的情况,这种定义方式就行不通了。因为上面这种方式要求事先知道数组大小,并且给数组中括号中必须是一个常数。因此我们需要创建动态数组。方式如下: int *str=new int[n]; ... 阅读全文
摘要:
阅读全文
摘要:
阅读全文