搜索结果
查询Tags标签: ch,共有 786条记录-
P4735 最大异或和
P4735 最大异或和 P4735 最大异或和 可持久化 01Trie 维护区间异或最大值板子题。 以下标为 root 的编号,每次询问 \([l,r]\) 中的所有数异或 \(x\) 的最大值就是到 Trie 上面去搜索,记录当前子树中的数的个数。 然后如果两个root对应树的当前 cnt 不一样,那么就证明这…
2021/4/12 18:58:53 人评论 次浏览 -
ZZULIOJ1172: 矩阵边界和(指针专题)
#include<stdio.h> #include<stdlib.h> #include<string.h>int main() {int m, n;int i, j, sum = 0;scanf("%d%d", &m, &n);int* ch, * p;ch = (int*)malloc(m * n * sizeof(int));for (i = 0; i < m; i++){for (j = 0; j < n…
2021/4/9 18:59:06 人评论 次浏览 -
学生练习:中缀表达式求值
#include<iostream> #define MAXSIZE 20 #define OK 1 #define ERROR 0 using namespace std; typedef struct stack {char *elem;int top; } Sqstack; void initstack(Sqstack &S) {S.elem=new char[MAXSIZE];S.top=-1; } int push(Sqstack &S,char e) {if…
2021/4/7 10:43:34 人评论 次浏览 -
学生练习:括号匹配
#include <iostream> using namespace std; #define STACKSIZE 10 typedef struct {int *base;int top;int StackSize; } SqList; void initStack(SqList *&s) {s=new SqList;s->base=new int(STACKSIZE);s->top=-1;s->StackSize=STACKSIZE; } void ge…
2021/4/7 10:43:00 人评论 次浏览 -
Windows+Apache+resin配置
2019/7/7 19:30:13 人评论 次浏览 -
一个简单的XML Schema的例子
2019/6/29 21:13:04 人评论 次浏览