Bluesky__
Bluesky__
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Bluesky__的博客
全部文章
(共3篇)
题解 | #计算斐波那契数最小差值#
#include <iostream> using namespace std; int main() { int f,f1=0,f2=1; int N,left=0,right=0; cin>>N; while(1) { ...
2023-10-10
0
374
题解 | #字符串中找出连续最长的数字串#
#include <iostream> using namespace std; #include<string> int main() { string str; string cur; string ret; cin>>str;...
2023-09-28
0
398
题解 | #倒置字符串#
#include <stdio.h> #include<assert.h> #include<string.h> void reverse(char* left,char* right) { assert(left&&right); while(l...
2023-02-20
0
319