天生我材必有用,千金散尽还复来。 仰天大笑出门去,我辈岂是蓬蒿人。 大鹏一日同风起,扶摇直上九万里。 十步杀一人,千里不留行。 事了拂衣去,深藏身与名。 安能摧眉折腰事权贵,使我不得开心颜! 且乐生前一杯酒,何须身后千载名? 愿将腰下剑,直为斩楼兰。
 
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 455. Assign Cookies Easy 26957FavoriteShare 455. Assign Cookies Easy 26957FavoriteShare Easy Assume you are an awesome parent and want to give your ch 阅读全文
posted @ 2019-02-12 17:52 gudy 阅读(301) 评论(0) 推荐(0) 编辑
摘要: lcs 刚刚重新学了一种模板。 阅读全文
posted @ 2019-02-12 12:09 gudy 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 题目: 583. Delete Operation for Two Strings Medium 61517FavoriteShare 583. Delete Operation for Two Strings Medium 61517FavoriteShare Medium Given two w 阅读全文
posted @ 2019-02-12 11:40 gudy 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 这个实验曾经做过 这次又做了一遍,对之前的过程作了补充 binary bomb 一、实验目的: 增强对程序机器级表示、汇编语言、调试器和逆向工程等理解。 二、实验要求: 1熟练使用gdb调试器和objdump; 2单步跟踪调试每一阶段的机器代码; 3理解汇编语言代码的行为或作用; 4“推断”拆除炸弹 阅读全文
posted @ 2019-02-10 11:31 gudy 阅读(1796) 评论(0) 推荐(0) 编辑
摘要: 题干: Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string. Example 1 阅读全文
posted @ 2019-02-05 23:49 gudy 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 之前上课做过一次,这次在官网上下下来,好像有点区别,不过大体差不多。 环境是ubuntu32 先修改bits.c文件,按要求实现内部函数 命令行执行: make btest ./btest 然后会看到对你修改后的函数的评判。 具体函数: 1 //1 2 /* 3 * bitXor - x^y usi 阅读全文
posted @ 2019-01-24 18:19 gudy 阅读(1596) 评论(1) 推荐(0) 编辑
摘要: leetcode 题目: Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. Example 1: Example 2: 阅读全文
posted @ 2019-01-20 09:28 gudy 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<unistd.h>#include<sys/wait.h>int main(){ int fd[2]; char buf[80]; pid_t pid; pipe(fd); if((pid = fork()) > 0){ printf("This 阅读全文
posted @ 2018-12-29 10:08 gudy 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1 #coding=utf-8 2 import socket 3 import time 4 import sys 5 6 def portScanner(ip,port): 7 server = (ip,port) 8 sockfd = socket.socket(socket.AF_INET,socket.SOCK_STREAM) 9... 阅读全文
posted @ 2018-12-26 13:53 gudy 阅读(512) 评论(0) 推荐(0) 编辑
摘要: sql注入 1 判断是否存在注入(字符型or数字型)1' or 1=1# 2 猜测语句中字段数1' order by 11' order by 21' order by 3...2得到字段数或者1' union select 1#1' union select 1,2#1' union select 阅读全文
posted @ 2018-09-13 07:49 gudy 阅读(252) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页