码迷,mamicode.com
首页 >  
搜索关键字:binary    ( 11734个结果
Linux常用命令
目录解释 /bin:bin是Binary的缩写, 这个目录存放着最经常使用的命令。 /boot:这里存放的是启动Linux时使用的一些核心文件,包括一些连接文件以及镜像文 件。 /dev:dev是Device(设备)的缩写, 存放的是Linux的外部设备,在Linux中访问设备的方 式和访问文件的方 ...
分类:系统相关   时间:2021-06-10 17:42:28    阅读次数:0
bit_manipulation 二进制位操作
bit_manipulation 二进制位操作 binary_and(a: int, b: int) → str 整数二进制 and 操作 对两个整形参数,先转换成二进制,对2个二进制数据进行 and 与操作,返回 二进制字符制 binary_or(a: int, b: int) → str or ...
分类:其他好文   时间:2021-06-03 17:54:32    阅读次数:0
Leetcode 106. 从中序与后序遍历序列构造二叉树
https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/ 根据一棵树的中序遍历与后序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。 例如,给出 中序遍历 inor ...
分类:其他好文   时间:2021-06-02 15:25:05    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:37:21    阅读次数:0
Leetcode 1769. Minimum Number of Operations to Move All Balls to Each Box
You have n boxes. You are given a binary string boxes of length n, where boxes[i] is '0' if the ith box is empty, and '1' if it contains one ball. In ...
分类:其他好文   时间:2021-06-02 10:37:12    阅读次数:0
每日LeetCode - 101. 对称二叉树(C语言)
C语言 #include "stdbool.h" #define NULL ((void *)0) //Definition for a binary tree node. struct TreeNode { int val; struct TreeNode *left; struct TreeNo ...
分类:编程语言   时间:2021-05-25 17:51:01    阅读次数:0
Volley之ByteArrayPool
前言 网络编程对于客户端来说是一块及其重要的地方,使用高效的网络请求框架将为你的系统产生很大的影响。而Volley作为谷歌的一个开源项目,炙手可热。有很多中小型公司的安卓移动客户端的网络程序都是基于volley的。 Volley的优点很多,光可扩展性这一条优点就值得我们称赞。但是我想针对的是在 Go ...
分类:其他好文   时间:2021-05-24 14:55:11    阅读次数:0
leetcode 1302. 层数最深叶子节点的和
给你一棵二叉树的根节点 root ,请你返回 层数最深的叶子节点的和 。 示例 1: 输入:root = [1,2,3,4,5,null,6,7,null,null,null,null,8]输出:15示例 2: 输入:root = [6,7,8,2,7,1,3,9,null,1,4,null,nul ...
分类:其他好文   时间:2021-05-24 14:50:25    阅读次数:0
【每日一题】403. 青蛙过河
https://leetcode-cn.com/problems/frog-jump/ 思路: 待补充 class Solution { private Boolean[][] rec; public boolean canCross(int[] stones) { int n = stones.l ...
分类:其他好文   时间:2021-04-30 12:33:41    阅读次数:0
mysql 主从复制遇到的坑
1 Could not execute Write_rows event on table cs3.test01; Duplicate entry ‘7‘ for key ‘test01.PRIMARY‘ 1.1 主库操作 SHOW BINARY LOGS; PURGE BINARY LOGS TO ...
分类:数据库   时间:2021-04-27 14:28:23    阅读次数:0
11734条   上一页 1 2 3 4 5 ... 1174 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!