密码截获-题解(C++代码)穷举 + 优化,马拉车还没消化,以后补上 摘要:——————————————————————————————— M 1 & 题解列表 2020年09月21日 0 点赞 0 评论 406 浏览 评分:0.0
密码截获——python 摘要:解题思路:注意事项:参考代码:while True: try: L = input() L2 = [] if len(L) == 1: …… 题解列表 2023年04月04日 0 点赞 0 评论 75 浏览 评分:0.0
已是最短了,请放心食用 摘要:解题思路注意事项:参考代码:#include<stdio.h>#include<string.h>int PalindromeString(char *s)//写一个函数来得到每一轮的结果,返回一个…… 题解列表 2024年11月21日 0 点赞 0 评论 70 浏览 评分:0.0
密码截获 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int huiwen_judge(int m,int k,char *s){ int l=m; int l1=k; f…… 题解列表 2019年02月03日 0 点赞 0 评论 430 浏览 评分:0.0
编写题解 1209: 密码截获 摘要:解题思路:注意事项:参考代码:while True: try: st=input() ts=st[::-1] s=[] &n 题解列表 2022年04月08日 0 点赞 0 评论 153 浏览 评分:0.0
zb-关于1209密码截获问题,我的简单粗暴方法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s; int…… 题解列表 2022年02月07日 0 点赞 0 评论 112 浏览 评分:0.0
密码截获-题解(C++代码) 摘要:```cpp #include using namespace std; bool pan_huiwei(string s){ int len=s.size(); for(i…… 题解列表 2020年04月19日 0 点赞 0 评论 410 浏览 评分:0.0
最长回文字符串(动态规划) 自用笔记 摘要:解题思路: 动态规划注意事项:如图所示,dp[0][3]的意思是cabb,不是指c和b。以对角线为分割,从左往右一列一列的填参考代码:#include<iostream> #include<ioma…… 题解列表 2022年02月24日 0 点赞 0 评论 144 浏览 评分:0.0
密码截获 (C语言代码) 摘要:解题思路:暴力获得一个字符串的所有部分,分别检查是否对称,如果是,比较它的长度与max注意事项:参考代码:#include<stdio.h>#include<string.h>#include<std…… 题解列表 2018年06月03日 0 点赞 0 评论 598 浏览 评分:0.0
密码截获-题解(C++代码,代码不规范,你们应该看不懂) 摘要:解题思路:思路很简单,把密码中所能形成的子串都判断一遍。注意事项:没什么需要特别注意的,我写函数时用了不少变量,太容易弄混了。参考代码:#include<iostream> #include<str…… 题解列表 2020年08月14日 0 点赞 0 评论 255 浏览 评分:0.0