摘要: use after free(UFA)释放内存后错误 Use-after-free in the Android Binder driver due to poll handler using a wait queue that is not tied to the lifetime of the 阅读全文
posted @ 2022-08-31 16:14 Tabshh 阅读(25) 评论(0) 推荐(0)
摘要: 名词解释 | 名词 | 翻译 | | : : | : : | | Vulnerability| 漏洞 | | patched-function | 补丁函数 | | signature | 签名| | sanitizing check| 合理性检验| data dependency | 数据依赖 c 阅读全文
posted @ 2022-08-25 15:41 Tabshh 阅读(177) 评论(0) 推荐(0)
摘要: 先放上促使我写记录的一句话 发现凡是我们人类能解决的问题,大都是巧得不能再巧,特殊得不能再特殊的问题,总是恰好有些能投机取巧的地方才能解决,由此感到人类的渺小 (今天认真看了一下集创赛的可能方案,发现其实总体方案是很简单的,但是要做到创新不容易,还有很长的路要走哇。。) Day1 SVM学习 因此由 阅读全文
posted @ 2022-03-17 20:51 Tabshh 阅读(47) 评论(0) 推荐(0)
摘要: ###砍树 大概是从这道题开始理解什么是真正的二分法,而不仅仅是通过不断对半分来搜索。 #include <bits/stdc++.h> #define RG register int #define rep(i,a,b) for(RG i=a;i<=b;++i) #define per(i,a,b 阅读全文
posted @ 2020-08-21 10:45 Tabshh 阅读(108) 评论(0) 推荐(0)
摘要: ###问题集锦 ###吐槽 ###步骤 应用商店下载Firefox浏览器,登陆账户之前将同步设置改为Global 2. 登陆账户,这时会给你登陆账户的邮箱发送验证码,*还会发一个提醒邮件* 输入验证码就ok了 ###问题集锦 ####Q1 为什么直接登录点击同步无效 火狐账户有两个服务器:国内和国外 阅读全文
posted @ 2020-08-19 20:45 Tabshh 阅读(3413) 评论(0) 推荐(2)
摘要: ##记录巧妙思维[自己写的太常规了就不放了] ####排队接水|来源 有一个巧妙的存数据方式来输出排序之后编号的顺序(针对快排懒得用结构体的同学) 因为n<=1000,所以给每个ti都*1001,在加上当前序号,可以保证排序的时候序号不干扰排序,又可以方便输出序号(只需mod1001输出序号,/10 阅读全文
posted @ 2020-08-08 11:01 Tabshh 阅读(132) 评论(0) 推荐(0)
摘要: 模板 #include <bits/stdc++.h> #define RG register int #define rep(i,a,b) for(RG i=a;i<=b;++i) #define per(i,a,b) for(RG i=a;i>=b;--i) #define ll long lo 阅读全文
posted @ 2020-08-06 17:43 Tabshh 阅读(123) 评论(0) 推荐(0)
摘要: 模板 来源https://societyniu.blog.luogu.org/solution-p1009 #include<iostream> #include<bits/stdc++.h> using namespace std; int a[2000]; int b[2000]; int c[ 阅读全文
posted @ 2020-08-04 09:27 Tabshh 阅读(247) 评论(0) 推荐(0)
摘要: 上菜 #include <iostream> #include <set> #include <iostream> #include <cstring> #include <queue> #include <math.h> #include <map> #include <string> #incl 阅读全文
posted @ 2020-08-03 19:21 Tabshh 阅读(116) 评论(0) 推荐(0)
摘要: 待编辑 阅读全文
posted @ 2020-02-07 18:00 Tabshh 阅读(84) 评论(0) 推荐(0)