- 博客(119)
- 资源 (3)
- 收藏
- 关注
原创 乱七八糟的随笔(4)
想去海边真的让我有一种冲动,想现在就下楼去跑步,我天,不行了,怎么办!!我和麻麻说我现在就想下楼跳绳,相比于跑步我可能更喜欢跳绳!今晚一定要去跳绳然后去跳操!!
2021-06-08 15:23:05 199 2
原创 乱七八糟的随笔(3)
实验很多,改了又改,什么时候能确定啊,我好累啊。创新创业课的作业真的绝了,一个可有可无的课弄出来这么多事,还要写商业计划书,已经不想上学了,干脆退学去创业吧。哎昨天晚上,室友由衷发出感叹,“读书可太难了”。呜呜,想回家,回家捡废品吧,和朋友说想回家捡垃圾,朋友告诉我,让我坚持读完这几年,回去捡垃圾也是有证的人。耳朵里播着Lambert唱的不得不爱,改着代码,我好想出去玩啊,放假估计也不能休息了,后天要去找老师汇报那个论文。生活艰难,我好想回以前的学校吃清真的烤肉饭,教工食堂的干锅鸡,
2021-03-31 09:39:15 143
原创 乱七八糟的随笔(2)——恶意软件权限API映射csv生成感想
已经做了将近一个月的对比实验,都是一些基础的东西,但是刚刚对于测试和学习好像有了一点新的想法,所以从困难的数理统计复习中停下来,希望记录下来。权限的提取相对简单,而且用时较少,直接用androguard 的函数就可以了,API 的提取也不是很复杂。但是他们的映射关系对应真的是跑到崩溃。权限生成多的时候几百条,而API会有近万条,他们的映射就相当于做了一个全连接,这个数据量我真的服了,我的电脑跑了几天都跑不完,最后终止,我到现在还没有想出来怎么规避无用的API,如果有好的想法,也希望大家指教。在表格建立的
2020-12-10 15:06:23 224 1
原创 乱七八糟的随笔(1)
我吐了,导师说要做恶意软件检测,学长学姐他们告诉我不要用静态方法,因为他们在用,他们现在已经在坑里爬不出来了,希望我不要掉进这个坑里。我能怎么办???那我就说我用动态的方法,然后他们告诉我其实这个方向的安全方面,有很多可以做的,让我自己再看一看想一想,我现在真的巨难受,我也不知道要怎么办。然后想着就先安装环境,鬼知道android sdk能有那么大,直接给我win10系统弄到红盘了,我又全都uninstall了,然后发现机器人盒只能安到Linux系统,那行,那我有,就直接安装就得了,然后更戏剧了,Linux
2020-10-14 17:46:38 126
原创 ora-12516 tns listener could not find available handler with matching protocol的笨蛋问题!亲测有效
数据库课设中已经接近尾声的课设在跑代码的过程中突然蹦盘,显示错误12516记录一下解决方法再重新启动一下数据库就好用了其实这些暴力的解决方法都不如编写代码的时候的好习惯,要及时关闭数据库!...
2018-07-04 15:04:24 1568
原创 ORA-28000:the account is locked解决方法记录
直接打开cmd1. sqlplus sys/123456 as sysdba;2. alter user system account unlock; 解锁测试有效
2018-06-25 13:36:17 251
原创 1064.朋友数
#include <bits/stdc++.h>using namespace std;int main(){ int n; cin >> n; int k = 0; int a[10001]; bool flag; for(int i = 0; i < n; i++) { flag = true; int number; cin >...
2018-06-12 16:33:25 251
原创 1063.计算谱半径
#include <cmath>#include <iostream>using namespace std;int main() { int n; cin >> n; double sum, max = 0.00; for(int i = 0; i < n; i++) { int numbers, numberx; cin >...
2018-06-12 16:24:39 255
原创 1024.科学计数法
空了很久这个题,之前觉得很难,后来想了一下,捋清思路之后准备做一下,用了不是很简单的方法,但是容易懂。直接计算小数点左右的位数,直接输出字符串从“.”到“E”之间的字符。#include <iostream>using namespace std;int main() { string s; cin >> s; int e; for(int i = 0; i ...
2018-06-06 13:13:07 373
原创 1061.判断题
#include <iostream>using namespace std;int main() { int n, m; cin >> n >> m; int t[1001]; int d[1001]; for(int i = 0; i < m; i++) { cin >> t[i]; } for(int i = 0;...
2018-06-06 12:32:44 387
原创 1060.爱丁顿数
数组从大到小排列,最大的一定有一个它本身,按照顺序,直到数字不大于天数截止增加。#include <bits/stdc++.h>using namespace std;bool cmp(int a, int b) { return a > b;}int main() { int n; cin >> n; int a[100001]; for(in...
2018-06-05 14:52:17 328
原创 1059.C语言竞赛
注意输出时是四位整数#include <iostream>#include <bits/stdc++.h>using namespace std;bool judge(int number) { int m = sqrt(number); if(number <= 1) { return false; } else { for(int i = 2...
2018-06-05 14:44:20 362
原创 1058.选择题
这题写的很困难#include <bits/stdc++.h>using namespace std;struct node{ int f, z; char ans[10];};int main(){ int n, m, temp; char c; cin >> n >> m; int score[1001] = {0}; int...
2018-06-04 15:34:13 414
原创 1057.数零壹
#include <iostream>using namespace std;int main() { string s; getline(cin, s); int sum = 0; for(int i = 0; i < s.length(); i++) { if(s[i] >= 'A' && s[i] <= 'Z') { su...
2018-05-31 13:23:16 268
原创 1056.组合数的和
每个数在个位和十位分别会计算几次,然后计算他们的总和。#include <iostream>using namespace std;int main() { int n; cin >> n; int sum = 0; int a[10001]; for(int i = 0; i < n; i++) { cin >> a[i]; } ...
2018-05-31 12:41:06 196
原创 1055.集体照
画图更清晰#include <iostream>#include <bits/stdc++.h>using namespace std;struct student { string s; int h;};bool cmp(struct student &a, struct student &b) { if(a.h == b.h) { ...
2018-05-31 12:34:20 318
原创 1054.求平均值
#include <bits/stdc++.h>#include <stdlib.h>using namespace std;bool check(string s){ bool flag = true; int countp = 0; int countn = 0; for (int i = 0; i < s.length(); i ++) { ...
2018-05-29 20:51:18 277
原创 1053.住房空置率
#include <iostream>#include <cstdio>using namespace std;int main() { int n, D; double e; cin >> n >> e >> D; int may = 0, must = 0; for(int i = 0; i < n; i++)...
2018-05-29 12:52:19 336
原创 1052.卖个萌
要注意输出“Are you kidding me? @\/@”时,在双引号中表示‘\’要用双斜杠表示,否则会出错。#include <iostream>#include <vector>using namespace std;vector<string> extract(string s) { vector<string> v; stri...
2018-05-29 12:35:57 572
原创 1051.复数乘法
#include <bits/stdc++.h>using namespace std;int main(){ double r1, p1, r2, p2; cin >> r1 >> p1 >> r2 >> p2; double a = r1 * r2 * cos(p1) * cos(p2) - r1 * r2 * si...
2018-05-26 15:54:08 420
原创 1050.螺旋矩阵(24)
最后一个测试点超时#include <iostream>#include <bits/stdc++.h>using namespace std;bool cmp(int a, int b) { return a > b;}int main() { int N; cin >> N; int a[10001]; int b[101][1...
2018-05-23 16:01:16 261
原创 1049.数列的片段和
用了一个投机取巧的方法,数了每个数的个数,找规律再相加。#include <iostream>#include <cstdio>using namespace std;int main() { int n; cin >> n; double sum = 0.0; for(int i = 0; i < n; i++) { double a...
2018-05-23 14:00:09 162
原创 1048.数字加密
要考虑两个字符串不相等的情况。#include <iostream>#include <vector>#include <bits/stdc++.h>using namespace std;int main() { string s, s1; cin >> s >> s1; int ka = 1; int a[10001...
2018-05-23 13:51:49 215
原创 1047.编程团体赛
#include <iostream>#include <cstdio>using namespace std;int main() { int n; cin >> n; int num[100000] = {0}; int max = 0; int number = 0; for(int i = 0; i < n; i++) { ...
2018-05-23 13:21:17 197
原创 1046.划拳
要注意喊得相等的情况。#include <iostream>using namespace std;int main() { int n; cin >> n; int a[101][101]; for(int i = 0; i < n; i++) { for(int j = 0; j < 4; j++) { cin >>...
2018-05-23 13:10:58 231
原创 1045.快速排序
如果按照题目正常写的话就只有第一个点能通过,结果超时,后来观察到可以和排好序的数组比较,数字相等的时候才能算,但是也有一半的点是不能通过的,后来,想到了如果有两个相同的数字,那么在排序的过程中,两个数字就是挨着的,那么就没办法与未排序的数组一一对应了,这样就判断一下,需要判断的数字是否比之前的最大值大。做完以上这些步骤,我觉得应该可以通过了,但是还是有一个点过不去,试了很久,就是要在结尾加换行,不...
2018-05-23 12:56:49 254
原创 1044.火星数字
#include<iostream>#include<string>#include<sstream>using namespace std;int toInt(string str) { int n; stringstream s; s << str; s >> n; return n;...
2018-05-21 14:45:12 302
原创 1043.输出PATest
用了一个不动脑的方法#include <bits/stdc++.h>#include <string.h>using namespace std;int main(){ char s[10001]; gets(s); int length = strlen(s); char s1[10001]; int k = 0; int a[6] = {0};...
2018-05-21 12:38:05 391
原创 1042.字符统计
在提交时有一个点没有过去,后来读题发现自己忽略了细节“如果有并列,则输出按字母序最小的那个字母。”,所以在循环里加一次判断并列的条件。#include <iostream>using namespace std;int main() { string s; getline(cin, s); int a[100001] = {0}; int max = 0; char b...
2018-05-21 12:34:15 519
原创 1040.有几个PAT
有两个要注意的点,一开始没有注意到要取1000000007的余,后来在结果处改正,可是还是有两个点过不去,应该是int的取值范围存不下的原因,所以改成了在计算过程中取余即可。#include <iostream>using namespace std; int main() { string str; cin >> str; int numT = 0; int...
2018-05-18 13:05:21 259
原创 1039.到底买不买
#include <iostream>using namespace std;int main() { string s1, s2; cin >> s1 >> s2; int count = 0; int flag = 0; for(int i = 0; i < s2.length(); i++) { for(int j = 0; j ...
2018-05-18 12:44:03 222
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人