标签:using 一个 nod efi 存在 div 操作 inpu 问题
4 5 6 9 6 8 9 3 5 5 5 5 9 8 7 6 5 10 1 2 3 4 5 5 4 2 1 3
6 9 8 5 9 8 7 6 5 1 2 3 4 5
1 #include<iostream> 2 #include<stdio.h> 3 #define MaxSize 100000 4 using namespace std; 5 6 typedef int element; 7 typedef struct node{ 8 int data[MaxSize]; 9 int last; 10 }list; 11 12 void init(list &L,int b){ 13 int i; 14 for(i = 0 ; i < b;i++){ 15 L.data[i] = 0; 16 } 17 L.last = b; 18 } 19 20 void CreatDel(list &L){ 21 int i,j; 22 scanf("%d",&L.data[0]); 23 for(i = 1 ;i < L.last;i++){ 24 scanf("%d",&L.data[i]); 25 //printf("%d \n",L.data[i]); 26 for(j = 0; j < i;j++){ 27 if(L.data[j] == L.data[i]){ 28 i--; 29 L.last--; 30 } 31 } 32 } 33 } 34 35 void output(list &L){ 36 int i; 37 for(i = 0 ; i < L.last - 1;i++){ 38 printf("%d ",L.data[i]); 39 } 40 printf("%d\n",L.data[i]); 41 } 42 43 int main(){ 44 list L; 45 int a,b; 46 scanf("%d",&a); 47 while(a--){ 48 scanf("%d",&b); 49 init(L,b); 50 CreatDel(L); 51 output(L); 52 } 53 return 0; 54 }
标签:using 一个 nod efi 存在 div 操作 inpu 问题
原文地址:https://www.cnblogs.com/xiaolitongxueyaoshangjin/p/12584054.html