☆☆☆☆思路:本题是二维的0-1背包问题,把总共的 0 和 1 的个数视为背包的容量 class Solution { public int findMaxForm(String[] strs, int m, int n) { /*int len = strs.length; // dp[i][j] ...
分类:
其他好文 时间:
2021-01-06 12:30:29
阅读次数:
0
bool isAdditiveNumber(char * num){ int i, j, k, len=strlen(num), pst1=0, pst2=0, bit=0, third; char* tmp1=(char*)calloc(22,sizeof(char)); char* tmp2=( ...
分类:
其他好文 时间:
2021-01-05 11:20:52
阅读次数:
0
char * getHint(char * secret, char * guess){ int shash[10]={0}; int ghash[1000]={0}; int i, len=strlen(secret), A=0, B=0, l=0; char* s=(char*)calloc(1 ...
分类:
其他好文 时间:
2021-01-05 10:37:37
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<conio.h> #include<string.h> #define LEN sizeof(struct scorenode) #define DEBUG struct scorenode{ int num ...
分类:
其他好文 时间:
2021-01-02 11:46:23
阅读次数:
0
list=[1,4,3,6,0,33] for j in range(0,len(list)-1): for i in range(0,len(list)-1): if list[i] > list[i+1]: list[i],list[i+1]=list[i+1],list[i] print('l ...
分类:
编程语言 时间:
2020-12-30 10:55:29
阅读次数:
0
递归实现 template<typename T> int binary_search(T arr[], int len, int left, int right, int find) { // 必要参数检查 if (NULL == arr || nullptr == arr || 0 > left ...
分类:
编程语言 时间:
2020-12-29 11:31:49
阅读次数:
0
>>> test1 = ["aa","bb","cc","dd","ee","ff"] >>> type(test1) <class 'list'> >>> len(test1) 6 >>> test1[0:3] ## 不包含索引为3的元素 ['aa', 'bb', 'cc'] >>> test1[ ...
分类:
编程语言 时间:
2020-12-23 12:31:49
阅读次数:
0
静态链表 1. 用结构体数组的方式声明,所占的存储空间是固定的,例如: struct StructName{ int a; long b; char c[size]; struct StructName *next; //静态链表区别于数组的地方,包含了一个指向同类型结构体的指针 }List[LEN ...
分类:
编程语言 时间:
2020-12-23 12:17:32
阅读次数:
0
前三题: #include<stdlib.h> #include<time.h> void bubble(int* px); void chioce(int* q); void del(int n, int len, int* py); int main() { int a[10], * p, b[ ...
分类:
其他好文 时间:
2020-12-22 11:53:06
阅读次数:
0
template <class T> class heap { vector<T>data; public: heap() {} heap(T *a,int len) { for (int i = 0; i < len; i++) data.push(a[i]); } T top() { retur ...
分类:
其他好文 时间:
2020-12-21 11:58:03
阅读次数:
0