喝醉了Ta的梦,晚安
喝醉了Ta的梦,晚安
全部文章
分类
题解(5)
归档
标签
去牛客网
登录
/
注册
喝醉了Ta的梦,晚安的博客
全部文章
(共6篇)
题解 | #剪绳子#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 &...
2022-08-21
0
317
题解 | #分割回文串-ii#
这里用了dp数组记录最小值,第一位dp[0]=-1,目的很简单,当j=0,整体是回文串时, 代码可以复用,-1+1=0; 也可以用递归的方法 public: /** * * @param s string字符串 * @return int整型 */ bool isPalindr...
C++
2022-01-05
1
471
题解 | #链表的回文结构#C++解法 快慢指针加栈保存数据
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class PalindromeList { public: bool ...
C++
2021-11-26
0
488
题解 | #公共子串计算#
#include<iostream> using namespace std; //a b s d f g s w // a 0 0 0 0 0 0 0 0 // b 0 1 0 // d 0 0 2 // f 0 0 // g 0 // q 0 ...
C++
2021-11-08
1
373
题解 | #金字塔图案#
#include<stdio.h> int main() { int n; scanf("%d",&n); int arr[10]={0}; int i=0; while(n){ if(n%2==0){...
2021-08-29
1
441
题解 | #KiKi说祝福语#
#include<stdio.h> int main() { double n1,n2; char c; while(~scanf("%lf",&n1)){ c = getchar(); scanf(&...
2021-08-21
0
410