题解列表

筛选

[编程入门]三个数字的排序

摘要:解题思路:冒泡排序注意事项:参考代码:#include<stdio.h>#include <string.h>int main(){    int temp=0,flag=0,i,j;    int ……

蓝桥杯算法提高VIP-快速幂

摘要:**解题思路:** **快速幂** ```cpp 快速幂乘法,将指数看成由0和1构成的二进制数,按位进行运算,对于大数还要“步步取模” #include #include usin……

蓝桥杯历届试题-回文数字

摘要:解题思路:注意事项:参考代码: #include"bits/stdc++.h" using namespace std; int main(){  int n;  int flag=0; ……