如果有人能提供比我更好的代码,那就太好了,尽管它也很糟糕。另外,我的代码有问题!!当我打印我的新数组arr
时,在输出中,当有重复的单词时会跳过数组的位置,并为此输出一个空格。
例如:
bat,
cat,
mat,
//here the word bat is not printed again, but instead i get an empty space
rat,
quit,
另外请只使用指针、数组或字符串,因为我还没有研究过向量、列表、映射等。谢谢你。
#include<iostream>
#include<conio.h>
#include<string>
using namespace std;
int main()
{
string word[100];
string arr[100];
int i=0,j,k,m,n;
while(1)
{
cout<<"enter word: \n";
cin>>word[i];
if(word[i]=="quit")
break;
i++;
}
for(j=i,m=0;j>=0,m<=i;m++)
{
for(k=j-1;k>=0;k--)
{
if(word[j] == word[k])
goto start;
}
arr[m]=word[j];
start:
j--;
}
for(n=m;n>0;n--)
cout<<arr[n]<<"\n";
getch();
}