摘要: 以后会出更多,高效开发! 阅读全文
posted @ 2022-08-29 11:47 TDesertGFI 阅读(126) 评论(0) 推荐(0)
摘要: 本文只在 fishc 和 cnblog 发出 https://fishc.com.cn/forum.php?mod=viewthread&tid=215944 RSA 算法理念 (from geek for geek)The idea of RSA is based on the fact that 阅读全文
posted @ 2022-07-29 10:14 TDesertGFI 阅读(531) 评论(0) 推荐(0)
摘要: FishC 也发了:https://fishc.com.cn/thread-215914-1-1.html (好的文章从不需要精美的排版) 首先我们要确定:我不会写也不想写 SHA256 算法!{:10_245:} 所以!!!!: 就用别人的代码呗。。。 上链接: http://www.zedwoo 阅读全文
posted @ 2022-07-28 10:43 TDesertGFI 阅读(512) 评论(0) 推荐(0)
摘要: std:: sort() 所属头文件 <algorithm> 介绍 可以对某个范围进行排序 不保证等效元素保持其原始相对顺序 参数 first, last 代表需要排序内容的开始位置和结尾,范围是 [first, last) comp 一个函数,其参数有两个,接受范围内的两个元素作为参数,返回的值表 阅读全文
posted @ 2021-04-17 22:21 TDesertGFI 阅读(189) 评论(0) 推荐(0)
摘要: 前言 我们知道 :hover 可以选择鼠标指针浮动在上面的元素,并设置样式。 我们可以改变元素的颜色,大小。但是如何改变它的显示内容呢? 效果是这样的: 详解 我们可以用伪元素选择器,这是代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset 阅读全文
posted @ 2021-02-28 13:17 TDesertGFI 阅读(1731) 评论(0) 推荐(0)
摘要: 题目描述 数如一个数 n, 输出 1~n 的全排列。 如输入 3 输出: 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1 题解 基本框架: // DFS/01-1 #include <iostream> using namespace std; int n; int aNum 阅读全文
posted @ 2021-02-28 12:17 TDesertGFI 阅读(86) 评论(0) 推荐(0)