#include <iostream.h>
struct LNode
{
LNode()
{
next=NULL;
i=1;
m='\0';
}
char m;
int i;
struct LNode * next;
};
int Incompare(char c,LNode * head)
{
LNode *p=head;
while(p)
{
if(c==p->m)
{
p->i++;
return 0;
}
else
p=p->next;
}
return 1;
}
LNode * Pop(char a[],LNode *head)
{
LNode * p=NULL;
for(int i=0;i<10;i++)
if(Incompare(a[i],head)==1)
{
p=head;
while(p)
p=p->next;
p=new LNode();
p->m=a[i];
}
return head;
}
void Display(LNode * head)
{
LNode * p=head;
while(p)
{
cout<<"字符:"<<p->m<<" 个数:"<<p->i<<endl;
p=p->next;
}
}
//主函数
#include "a.h"
#include <iostream.h>
#include <stdio.h>
void main()
{
char * elem=new char[10];
cin>>elem;
LNode *head=new LNode();
Pop(elem,head);
Display(head);
}