牛客770539642号
牛客770539642号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客770539642号的博客
全部文章
(共5篇)
题解 | #大数乘法#
#include <iostream> #include <cstring> #include <string> #include<algorithm> using namespace std; const int N = 100010; int a[...
2023-06-03
1
392
题解 | #大数乘法#
int c[100000000],a[10000000],b[10000000]; class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param s string字...
2023-06-03
0
281
题解 | #把字符串转换成整数#
#include <string> class Solution { public: int StrToInt(string str) { int ans=0; int cnt=0; if(str[0]=='+') ...
2023-05-28
0
148
题解 | #链表分割#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) {} };*/ class Partition { public: ListNode...
2023-04-01
0
240
题解 | #数字在升序数组中出现的次数#
/** * * @param data int整型一维数组 * @param dataLen int data数组长度 * @param k int整型 * @return(756076230) int整型 */ int GetNumberOfK(int* data, int da...
2023-01-01
1
236