题解列表

筛选

二分-时间复杂度n*logn

摘要:解题思路:注意事项:参考代码:"""暴力做法:使用index查找元素 但是每次要进行排序 时间复杂度 n*n*logn正确做法:使用二分查找 在for之前排序一次 时间复杂度 n*logn二分思路:由……

编写题解 1390: 大神老白

摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> #include <stdlib.h> int main() {   int a, ……

通过递归解决各种问题

摘要:解题思路:找到递归思路注意事项:看清题目参考代码:#include<stdio.h>int qiua(int a){ if(a==1) return 1; return qiua(a-1)+a;}in……

判断三位数以内的水仙花数

摘要:解题思路:直接用水仙花数的定义翻译成c语言注意事项:注意灵活的思路。参考代码:#include <stdio.h>int main(){ int a,b,c,number; scanf("%d",&……

蓝桥杯算法提高VIP-文本加密

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){      int i;      char a[100];      get……