码迷,mamicode.com
首页 >  
搜索关键字:hard disk    ( 4451个结果
git版本管理工具(二)
1.查看历史版本 ·git log ·git reflog 2.版本回退 ·git reset --hard HEAD^(HEAD代表当前版本) ·HEAD^代表回退到上一个版本 以此类推 ·HEAD~1 和上面同理 ·也可以用git reflog 查看历史版本 用版本号来回退(git reset ...
分类:其他好文   时间:2019-08-16 22:31:38    阅读次数:80
Git 版本回退的几种操作方法
1, 结合使用 git reset --hard <commit id> , git reset --hard HEAD^, git reflog , git log 1) 使用 git log 查看你需要回退版本的commit id, 如果git log显示的结果看着不舒服可以多加一个参数 --p ...
分类:其他好文   时间:2019-08-16 20:37:48    阅读次数:99
Codeforces 1203F2 Complete the Projects (hard version)
[cf题面](https://codeforces.com/contest/1203/problem/F2 Time limit 2000 ms Memory limit 262144 kB 解题思路 先留坑,吃完饭来填 源代码 cpp include include int n,r; struct ...
分类:其他好文   时间:2019-08-15 19:26:43    阅读次数:96
Codeforces - 1203D2 - Remove the Substring (hard version) - 双指针
https://codeforces.com/contest/1203/problem/D2 上次学了双指针求两个字符串之间的是否t是s的子序列。但其实这个双指针可以求出的是s的前i个位置中匹配t的最长的前缀。反过来求一次可以得到最长的后缀。 然后怎么找要删除的位置呢?暴力n^2肯定可以,然后线性写 ...
分类:其他好文   时间:2019-08-15 06:01:00    阅读次数:60
MBR详解
主引导记录MBR 硬盘的0柱面、0磁头、1扇区称为主引导记录MBR(Master Boot Record)它由三个部分组成,主引导程序(boot loader)、硬盘分区表DPT(Disk Partition table)和硬盘有效标志(55AA)。 在总共512字节的主引导扇区里主引导程序占446 ...
分类:其他好文   时间:2019-08-14 23:37:44    阅读次数:145
android x86 安装
1、下载页面 http://www.android-x86.org 下载了: android-x86-8.1-r2.iso 用Win32DiskImager制作usb启动盘。 参考: https://blog.csdn.net/jiangxuexuanshuang/article/details/8... ...
分类:移动开发   时间:2019-08-14 14:54:04    阅读次数:98
Mathematically Hard LightOJ-1007(欧拉定理+前缀和)
Description Mathematically some problems look hard. But with the help of the computer, some problems can be easily solvable. In this problem, you will ...
分类:其他好文   时间:2019-08-14 00:09:14    阅读次数:152
Linux如何挂载U盘
1,以root用户登陆 先加载USB模块 modprobe usb-storage 用fdisk -l 看看U盘的设备 假如U盘是sda1 2,确定在 目录 /mnt 下建立了 文件夹 /usb,如果未建立可键入一下命令:mkdir /mnt/usb_disk,成功后进行下一步。 3,载入 u 盘, ...
分类:系统相关   时间:2019-08-13 13:41:17    阅读次数:112
Enable Azure Disk Encryption for Windows Notes
虚拟机加密需求 https://docs.microsoft.com/en-us/azure/security/azure-security-disk-encryption-prerequisites 虚拟机加密代码https://docs.microsoft.com/en-us/azure/sec ...
分类:Windows程序   时间:2019-08-13 09:15:15    阅读次数:118
LeetCode开心刷题三十二天——85. Maximal Rectangle
85. Maximal Rectangle Hard 161653FavoriteShare 85. Maximal Rectangle Hard 161653FavoriteShare Hard Given a 2D binary matrix filled with 0's and 1's, f ...
分类:其他好文   时间:2019-08-12 01:05:00    阅读次数:103
4451条   上一页 1 ... 65 66 67 68 69 ... 446 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!