• 数据结构——10.24


    回文

    #include
    using namespace std;
    
    bool is_huiwen(  string s)
    {
    	for(int i = 0; i < s.size() / 2; i++){
    		if( s[i] != s[ s.size() - i - 1 ] ){
    			return false;
    		}
    	}
    	return true;
    }
    
    
    int main(){
    	string ss;
    	int option;
    	while( 1 ){
    		cout << "请选择你的操作,1判断回文,0退出\n";
    		cin >> option;
    		if( option == 0 ){
    			break;
    		}
    		else{
    			cout << "qing input a string\n"; 
    			cin >> ss;
    			if( is_huiwen( ss ) ){
    				cout << "YES!该字符串 是 回文的\n";
    			}
    			else{
    				cout << "NO!该字符串 不是 回文的\n";
    			} 
    		}
    	}
    	
    	return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    双向栈

    #include
    #include
    #define maxsize 10 
    #include
    using namespace std;             
    typedef struct {
    	int data[maxsize];
    	int left;                         
    	int right;                         
    }DoubleStack,*Double;
     int Init(Double &L){
     	L=(Double)malloc(sizeof(DoubleStack));
    	if(L==NULL) return -1;
    	L->left=-1;                  
    	L->right=maxsize;           
    	return 1; 
     }
    //入栈
    int push(Double &L,int status,int x){  
    	if(L->left+1==L->right){
    		printf("栈满!");
    		return -1;
    	} 
    	if(status==1){
    		L->left++;            
    		L->data[L->left]=x;   
    	}else if(status==2){
    		L->right--;           
    		L->data[L->right]=x;  
    	}
    }
    //出栈
    int pop(Double &L,int status) {
    	if(status==1){
    		if(L->left<0) {
    			printf("左栈为空!\n"); return -1;
    		}else{
    			printf("出%d ",L->data[L->left]);    
    			L->data[L->left]=0;                   
    			L->left--;
    		}
    	}else if(status==2){
    		if(L->right>maxsize-1){
    			printf("右栈为空!\n"); return -1;
    		}else{
    			printf("出%d ",L->data[L->right]);   
    			L->data[L->right]=0;                 
    			L->right++;
    		}
    	}
    }
    
    
     void Print(Double &L) {
     	int i,j;
     	for(i=0;i<=maxsize-1;i++){     
     		if(L->data[i]!=0){                 
     			printf("%d ",L->data[i]);
    		 }else{
    		 	printf(" * ");
    		 } 
    	 }
     }
    int main(){
    	DoubleStack *s;
    	char L,R;
    	if(Init(s)==1){
    		printf("初始化成功!\n");
    	}
    	
    
    	
    	while (1)
    	{
    		int a;
    		int xxx;int x_val;
    		cout << "\n  1左入栈\n  2右入栈\n  3左出栈\n  4右出栈\n  5遍历栈(左到右)  0退出" << endl;
    		cout << "请选择要进行的操作:";
    		cin >> a;
    		switch (a)
    		{
    		case 1:
    			cout << "请选择左入栈个数:";
    			cin >> xxx;
    			cout << "请依次输入入栈元素:\n";
    			for(int i = 1; i <= xxx ; i++){
    				cin >> x_val;
    				push(s,1,x_val);  
    			}
    			break;
    		case 2:
    			cout << "请选择右入栈个数:";
    			//int xxx;
    			cin >> xxx;
    			cout << "请依次输入入栈元素:\n";
    			for(int i = 1; i <= xxx ; i++){
    				cin >> x_val;
    				push(s,2,x_val);  
    			}
    			break;
    		case 3:
    			cout << "请选择左出栈个数:";
    			int xxx;
    			cin >> xxx;
    			//cout << "请依次输入入栈元素:\n";
    			for(int i = 1; i <= xxx ; i++){
    				//cin >> x_val;
    				pop(s,1);
    			}
    			break;
    		case 4:
    			cout << "请选择右出栈个数:";
    			//int xxx;
    			cin >> xxx;
    			//cout << "请依次输入入栈元素:\n";
    			for(int i = 1; i <= xxx ; i++){
    				//cin >> x_val;
    				pop(s,2);
    			}
    			break;
    
    		case 5:
    			printf("此时栈的元素为:");
    	        Print(s);
    			break; 
    		case 0: return 1;
    		default:
    			return 1;
    		}
    	}
    	
    	
    } 
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134

    双向队列1

    #include
    using namespace std;
    #define OK 1
    #define MAXQSIZE 5
    
    
    
    
    typedef struct
    {
    	int* base;  
    	int front;		  
    	int rear;         
    }SqQueue;
    
    int InitQueue(SqQueue&);	    
    int EnQueue(SqQueue&, int);    
    int DeQueue(SqQueue&, int &);  
    int GetHead(SqQueue);	    
    int QueueTraverse(SqQueue);	
    //int QueueLength( SqQueue );
    void is_full( SqQueue );
    
    int flag;
    
    int main()
    {
    	SqQueue S;
    	int e, a;
    	if (InitQueue(S))
    		cout << "循环队列初始化成功!" << endl;
    	else
    		cout << "循环队列初始化失败!" << endl;
    	
    	while (1)
    	{
    		cout << "\n  1入队\n  2出队\n  3取队头元素\n  4输出队列\n   5求队列状态\n  0退出" << endl;
    		cout << "请选择要进行的操作:";
    		cin >> a;
    		switch (a)
    		{
    		case 1:
    			int x, n;
    			cout << "请输入要插入的元素个数:";
    			cin >> n;
    			for (int i = 0; i < n; i++) 
    			{
    				//cout << "请输入第" << i + 1 << "元素值:";
    				cin >> x;
    				EnQueue(S, x);
    			}
    			cout << "入队完成!" << endl;
    			break;
    		case 2:
    			cout << "请输入要删除的元素个数:";
    			cin >> n;
    			for (int j = 0; j < n; j++) {
    				if (!DeQueue(S, e))
    					cout << "出队失败!" << endl;
    				else
    					cout << "第【" << j+1 << "】个元素:" << e << " 出队成功!" << endl;
    			}
    			break;
    		case 3:
    			cout << "队头元素为:" << GetHead(S) << endl;
    			break;
    		case 4:
    			if(!QueueTraverse(S))
    				cout << "队列为空!" << endl;
    			break;
    //		case 6:
    //			QueueLength(S);
    //			break;
    		case 5:
    			is_full( S );
    			if( flag == 0 ){
    				cout << "队列为空!\n"; 
    			}
    			else cout << "队列是满的!\n";
    			break; 
    		case 0: return OK;
    		default:
    			return OK;
    		}
    	}
    	return 0;
    }
    
    
    int InitQueue(SqQueue& Q)
    {
    
    	Q.base = new int[MAXQSIZE];
    	if(!Q.base)
    		return 0;   
    	Q.front = Q.rear = 0;
    	return OK;
    }
    
    
    int EnQueue(SqQueue& Q, int e)
    {
    
    	if ((Q.rear + 1) % MAXQSIZE == Q.front)  
    		return 0;    
    	Q.base[Q.rear] = e;
    	Q.rear = (Q.rear + 1) % MAXQSIZE;
    	return OK;
    }
    
    
    int DeQueue(SqQueue& Q, int &e) 
    {
    
    	if (Q.front == Q.rear)
    		return 0;
    	e = Q.base[Q.front];
    	Q.front = (Q.front + 1) % MAXQSIZE;
    	return OK;
    }
    
    
    int GetHead(SqQueue Q)
    {
    
    	if (Q.front != Q.rear)   
    		return Q.base[Q.front];   
    }
    
    
    int QueueTraverse(SqQueue Q)
    {
    	cout << "当前队列为:";
    	if (Q.front == Q.rear)
    		return 0;
    	while (Q.front != Q.rear)   
    	{
    		cout << Q.base[Q.front] << " ";
    		Q.front = (Q.front + 1) % MAXQSIZE;
    	}
    	cout << endl;
    }
    
    
    /*int QueueLength(SqQueue Q)
    {
    
    	int len = (Q.rear - Q.front + MAXQSIZE) % MAXQSIZE;
    	cout << "循环队列的长度为:" << len << endl;
    	return OK;
    }
    */
    void is_full( SqQueue Q ){
    	if( Q.front == Q.rear ){
    		int len = (Q.rear - Q.front + MAXQSIZE) % MAXQSIZE;
    		if( len == MAXQSIZE ){
    			flag = 1;
    		}
    		else flag = 0;
    	}
    	else flag = 1;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163

    双向队列2

    #include
    using namespace std;
    #define OK 1
    #define MAXQSIZE 5
    
    
    
    
    typedef struct
    {
    	int* base;  
    	int front;		  
    	int rear;         
    }SqQueue;
    
    int InitQueue(SqQueue&);	    
    int EnQueue(SqQueue&, int);    
    int DeQueue(SqQueue&, int &);  
    int GetHead(SqQueue);	    
    int QueueTraverse(SqQueue);	
    //int QueueLength( SqQueue );
    void is_full( SqQueue );
    
    int flag;
    
    int main()
    {
    	SqQueue S;
    	int e, a;
    	if (InitQueue(S))
    		cout << "循环队列初始化成功!" << endl;
    	else
    		cout << "循环队列初始化失败!" << endl;
    	S.base[MAXQSIZE ] = 0;
    	while (1)
    	{
    		cout << "\n  1入队\n  2出队\n  3取队头元素\n  4输出队列\n  5求队列状态\n  0退出" << endl;
    		cout << "请选择要进行的操作:";
    		cin >> a;
    		switch (a)
    		{
    		case 1:
    			int x, n;
    			cout << "请输入要插入的元素个数:";
    			cin >> n;
    			cout << "请依次输入要插入的元素:";
    			for (int i = 0; i < n; i++) 
    			{
    				cin >> x;
    				EnQueue(S, x);
    			}
    			cout << "入队完成!" << endl;
    			break;
    		case 2:
    			cout << "请输入要删除的元素个数:";
    			cin >> n;
    			for (int j = 0; j < n; j++) {
    				if (!DeQueue(S, e))
    					cout << "出队失败!" << endl;
    				else
    					cout << "第" << j+1 << "个元素:" << e << " 出队成功!" << endl;
    			}
    			break;
    		case 3:
    			cout << "队头元素为:" << GetHead(S) << endl;
    			break;
    		case 4:
    			if(!QueueTraverse(S))
    				cout << "队列为空!" << endl;
    			break;
    //		case 6:
    //			QueueLength(S);
    //			break;
    		case 5:
    			is_full( S );
    			break; 
    		case 0: return OK;
    		default:
    			return OK;
    		}
    	}
    	return 0;
    }
    
    
    int InitQueue(SqQueue& Q)
    {
    
    	Q.base = new int[MAXQSIZE + 1];
    	if(!Q.base)
    		return 0;   
    	Q.front = 10;Q.rear = 0;
    	return OK;
    }
    
    
    int EnQueue(SqQueue& Q, int e)
    {
    	//cout << "wei " << Q.rear<< endl;
    	if ((Q.rear + 1) % (MAXQSIZE ) == Q.front)  {
    		//cout << "wei " << Q.rear<< endl;
    		cout << "full!\n";
    		return 0;
    	}
    	Q.base[Q.rear] = e;
    	Q.rear = (Q.rear + 1) % (MAXQSIZE - 1 );
    	Q.base[MAXQSIZE]++; 
    	//cout << "wei " << Q.rear<< endl;
    	return 1;
    }
    
    
    int DeQueue(SqQueue& Q, int &e) 
    {
    
    	if (Q.front == Q.rear)
    		return 0;
    	e = Q.base[Q.front];
    	Q.front = (Q.front + 1) % (MAXQSIZE  );
    	Q.base[MAXQSIZE  ]--;
    	return OK;
    }
    
    
    int GetHead(SqQueue Q)
    {
    
    	if (Q.front != Q.rear)   
    		return Q.base[Q.front];   
    }
    
    
    int QueueTraverse(SqQueue Q)
    {
    	cout << "当前队列为:";
    	if (Q.front == Q.rear)
    		return 0;
    	while (Q.front != Q.rear)   
    	{
    		cout << Q.base[Q.front] << " ";
    		Q.front = (Q.front + 1) % (MAXQSIZE  );
    	}
    	cout << endl;
    }
    
    
    /*int QueueLength(SqQueue Q)
    {
    
    	int len = (Q.rear - Q.front + MAXQSIZE) % MAXQSIZE;
    	cout << "循环队列的长度为:" << len << endl;
    	return OK;
    }
    */
    void is_full( SqQueue Q ){
    	if( Q.base[MAXQSIZE  ] == (MAXQSIZE ) ){
    		cout << "队列是满的!\n";
    	}
    	else if( Q.base[MAXQSIZE  ] == 0 ){
    		cout << "队列是空的!\n";
    	}
    	else{
    		cout << "队列长度为:" << Q.base[MAXQSIZE] << endl;;
    	} 
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
  • 相关阅读:
    WM CJC8988多功能Codec芯片性能及应用介绍
    [论文笔记] Open-sora 2、视频数据集介绍 MSR-VTT
    【Java牛客刷题】入门篇(02)
    设计模式:模板模式(C#、JAVA、JavaScript、C++、Python、Go、PHP)
    Python自动化测试详解
    Java代码中如何向HashMap对象中添加(Map集合对象)呢?
    前端开发语言有哪些
    属性和特征的区别
    【Python】绘制 对数函数
    微服务井喷时代,我们如何规模化运维?
  • 原文地址:https://blog.csdn.net/weixin_74112538/article/details/134010365