链表
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
题目描述
给出一个n个数的序列,将所有的回文数按顺序加入链表 (如121、24542等)(先后顺序不能变)
如:3 72 353
结果应为3 353
代码模板
#include <iostream>
using namespace std;
struct Listnode{
int val;
Listnode *next;
};
Listnode *Insert(int a[],int n){//请注意分配内存空间,返回表头指针
/********** Begin *********/
/********** End **********/
}
int main(){
int a[100],n;
Listnode *h;
cin>>n;
for(int i=0;i<n;i++){
cin>>a[i];
}
h = Insert(a,n);
while(h){
cout<< h->val <<" ";
h = h->next;
}
return 0;
}