码迷,mamicode.com
首页 >  
搜索关键字:const    ( 26295个结果
关于task_struct中变量const cpumask_t *cpus_ptr的作用
422 /** 423 * cpumask_and - *dstp = *src1p & *src2p 424 * @dstp: the cpumask result 425 * @src1p: the first input 426 * @src2p: the second input 427 * ...
分类:其他好文   时间:2021-03-30 13:00:57    阅读次数:0
二分图匹配
//二分图匹配#include<cstdio>#include<cstring>using namespace std;const int N = 1005;int n,m,k; //a方n人 b方m人 k对关系 int u,v; int g[N][N]; //表示a,b之间有关系,赋值为0/1. ...
分类:其他好文   时间:2021-03-30 12:52:43    阅读次数:0
全国空气质量在线平台-js逆向
1.全国空气质量在线平台 网址:https://www.aqistudy.cn/ 2.逆向js代码 const askCju6cmMLz = "apAteRdhDd5i5n74";//AESkey,可自定义 const asieXomd2dAl = "bN8izWwuwRjjA0pH";//密钥偏移 ...
分类:Web程序   时间:2021-03-29 12:31:32    阅读次数:0
2021.03.27_Reverse_xCTF_IgniteMe_WriteUp
今天早点干活 仍然是常规的Windows可执行程序逆向,拖入exeinfope之后发现没壳直接丢进IDA,找到main函数进入 int __cdecl main(int argc, const char **argv, const char **envp) { int v3; // edx int ...
分类:其他好文   时间:2021-03-29 12:28:35    阅读次数:0
webpack初体验
const { resolve } = require("path") const HtmlWebpackPlugin = require('html-webpack-plugin') module.exports = { entry: './src/index.js', output: { fil ...
分类:Web程序   时间:2021-03-29 12:08:56    阅读次数:0
node加密rsa公钥和python解密私钥的问题
node和python默认的rsa加密方式是不一样,要调整一下。 node代码: const fs = require('fs'); const NodeRSA = require('node-rsa'); const path = require('path').resolve(); const ...
分类:编程语言   时间:2021-03-29 11:41:58    阅读次数:0
高斯消元/矩阵树定理学习记录
高斯消元 模板 luogu P3389 #include<bits/stdc++.h> using namespace std; const double eps=1e-6; const int N=100+5; double a[N][N]; int n; int gauss(){ int c,r ...
分类:其他好文   时间:2021-03-26 15:26:50    阅读次数:0
使用js手动实现bind、call、apply功能
Function.prototype.mycall = function () { const [first, ...rest] = arguments; const ctx = first || window; ctx.func = this; const ret = ctx.func(...re ...
分类:移动开发   时间:2021-03-26 15:24:30    阅读次数:0
文件点击下载
// 文件点击下载 function downloadFile() { fetch(tossactApi + params.row.originVideo).then(res => res.blob()).then(blob => { const a = document.createElement ...
分类:其他好文   时间:2021-03-26 15:14:30    阅读次数:0
ccf csp 202012-1
A 期末预测之安全指数 签到 B 期末预测之最佳阈值 签到 排序之后, 处理前缀和, 先行枚举 C 带配额的文件系统 写ex了, 大模拟 D 食材运输 注意到食材就10种, 直接状压, 又发现答案单调, 直接二分 const int N = 1e2, M = 10; int n, m, _, k, ...
分类:其他好文   时间:2021-03-18 14:25:40    阅读次数:0
26295条   上一页 1 ... 30 31 32 33 34 ... 2630 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!