码迷,mamicode.com
首页 >  
搜索关键字:subsets bit    ( 10933个结果
The Montgomery ladder for x-coordinate-based scalar multiplication
//https://www.researchgate.net/publication/277940984_High-speed_Curve25519_on_8-bit_16-bit_and_32-bit_microcontrollers Synthetically, the advantages o ...
分类:其他好文   时间:2020-12-01 12:07:02    阅读次数:4
位(bit)、字节(byte)、字符、编码之间的关系
位(bit)、字节(byte)、字符、编码之间的关系 1、位: 数据存储的最小单位。每个二进制数字0或者1就是1个位; 2、字节: 8个位构成一个字节;即:1 byte (字节)= 8 bit(位); 1 KB = 1024 B(字节); 1 MB = 1024 KB; (2^10 B) 1 GB ...
分类:其他好文   时间:2020-11-30 15:58:17    阅读次数:8
二叉树——复制、计算深度、统计节点数、统计叶子节点数、比较两个树、交换左右子树节点、双序遍历
void copy(BiTree T,BiTree &NewT){ //复制树 if(T == NULL){ NewT = NULL; return; }else { NewT = new BiTNode; NewT->data = T->data; copy(T->lchild,NewT->lch ...
分类:其他好文   时间:2020-11-30 15:28:17    阅读次数:2
LC 222. Count Complete Tree Nodes (二分查找)
link /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NUL ...
分类:其他好文   时间:2020-11-27 11:14:59    阅读次数:5
Codeforces 1439B. Graph Subset Problem (思维,复杂度分析)
#include<bits/stdc++.h> #define ll long long #define N 100015 #define rep(i,a,n) for (int i=a;i<=n;i++) #define per(i,a,n) for (int i=n;i>=a;i--) #def ...
分类:其他好文   时间:2020-11-25 12:45:31    阅读次数:4
ACPI Table 与 Device Tree
背景 在分析Linux内核驱动的时候,有时候会看到一些acpi字样的接口。 之前一直没搞明白ACPI是什么,现在知道了。 ACPI Advanced Configuration and Power Management Interface : 用于配置与电源管理的接口,是让OS使用的。用在x86架构 ...
分类:其他好文   时间:2020-11-25 12:39:07    阅读次数:6
rsa_gmp
#include <string.h> #include <stdlib.h> #include <stdio.h> #include "gmp.h" #define MILLER_RABIN_TEST_NUM 5 #define PRIME_BIT 512 #define CLOCKS_PER_S ...
分类:其他好文   时间:2020-11-24 12:38:56    阅读次数:6
java提优-HashMap源码小析(基于JDK1.8)
HashMap是我们日常使用的非常多的java集合框架下的一员, 它是基于哈希表的 Map 接口的实现,以key-value的形式存在。 我们可以通过key快速地存、取value。 本文以基于 JDK1.8 为源码,简单梳理了一下hashMap的源码实现相关知识点。 一、类定义 HashMap实现了 ...
分类:编程语言   时间:2020-11-23 12:45:53    阅读次数:24
TCP请求头
TCP 请求头结构 Source Port(源端口):源端口号 (占用16位),发送端程序端口 Destination Port(目的端口):目的端口号(占用16位),接收端程序端口 Sequence Number(发送数据序号):用来标识从TCP发端向TCP收端发送的数据字节流,它表示在这个报文段 ...
分类:其他好文   时间:2020-11-23 11:50:37    阅读次数:4
P3899 [湖南集训]谈笑风生
###P3899 [湖南集训]谈笑风生 二维数点问题,主席树模板(两种写法 #include<bits/stdc++.h> #define IL inline #define LL long long #define pb push_back using namespace std; const i ...
分类:其他好文   时间:2020-11-21 12:15:18    阅读次数:7
10933条   上一页 1 ... 19 20 21 22 23 ... 1094 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!