Taomujian Blog

「一枚程序员,一名安全爱好者,一位旅行者,一个修行者,一枚吉他手,一名书籍阅读者,一位跑步者,一个爱好美食者.」

0005_Longest_Palindromic_Substring

0005_Longest_Palindromic_Substring

题目 Given a string s, return the longest palindromic substring in s. 找出一个字符串的最大回文子字符串 思路 这道题常见的算法是马拉车算法,但本题解决并没有完全按照马拉车算法来,而是根据马拉车算法进行改善的,二者的区别是马拉车算法要在字符的左右两边都加上辅助字符#,而本答案只是在字符的右边添加了辅...

0004_Median_of_Two_Sorted_Arrays

0004_Median_of_Two_Sorted_Arrays

题目 Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. 给2个有序数组,把二个数组组成新的有序数组,并计算这个新数组中间二个元素的平均值,但其实并没有把这二个数组组合成新数组,只是抽象的想象成为一个...

0003_Longest_Substring_Without_Repeating_Characters

0003_Longest_Substring_Without_Repeating_Characters

题目 Given a string s, find the length of the longest substring without repeating characters. 找出一个字符串中没有重复字符的最大子字符串,并返回这个最大字符串的长度 思路 首先建一个字符的映射表,循环目标字符串,在字符映射表里记录每个字符的出现位置,如果重复出现了,则要根据...

伪造WIFI

伪造WIFI

前言 最近在研究WIFI流量劫持的相关工具,由于技术栈太浅,过程颇为痛苦😖,还是太菜了,有一部分是伪造wifi的过程,简化下放出来,基于fluxion工具修改的,需要有一个无线网卡,可以在某宝上花几十元买个 安装依赖 apt update && apt install -y hostapd isc-dhcp-server hostapd 用来建立...

0002__Add_Two_Numbers

0002__Add_Two_Numbers

题目 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers...

0001_Two_Sum

0001_Two_Sum

题目 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and ...

三山五岳游后感

游览完三山五岳之后的一些感触

三山五岳游后感 7年的时间,慢慢的走完了三山五岳,颇有感触,近期用拍照的素材做了一个视频,期间遗憾没有很多值得回忆的图片,只怪当时没有好好地拍照,为了以后老的时候还能看看年轻时的想法,故写篇文章来留念. 游 高二暑假的时候,闲来无事,与同学闲聊以及出于对外面世界的渴望,突然想去外面看看,正好泰山离老家很近,所以就开始三山五岳之旅的第一站,泰山. 登泰山时,是在晚上登的,那时夏...