int
-
Day08
package base;public class Day07 { public static void main(String[] args) { //int a=1,b=2,c…
-
Day07
package base;public class Day06 { public static void main(String[] args) { //操作比较大的时候,注意溢出…
-
[Google] LeetCode 1631 Path With Minimum Effort 优先队列
You are a hiker preparing for an upcoming hike. You are given heights, a 2D array of size …
-
Linux IO多路复用
https://segmentfault.com/a/1190000003063859 / select poll epoll 操作方式 遍历 遍历 回调 底层实现 数组 链表 哈…
-
12–递归【迷宫问题】
1 //递归 –> 迷宫问题 2 public class MazeQuestion { 3 4 public static void main(String[] args…
-
C++实现真值表
这一片文章主要是关于真值表,在完成之前我也遇到了许多问题。比如怎么去求解表达式的值,怎么去将每个变量进行赋值,也就是如何 将n个字符进行01全排列。 01全排列真的神奇,0…
-
自定义View5 -塔防小游戏:第二篇防御塔随意放置
第一篇:一个防御塔+多个野怪(简易版) 第二篇:防御塔随意放置 自定义View,处理事件分发,up,move,down。 第三篇:防御塔随意放置+多组野怪 第四篇:多波野怪 第…
-
什么是数据结构
数据结构 数据结构是计算机中存储、组织数据的方式。通常情况下,精心选择的数据结构可以带来最有效率算法。利用代码解决实际问题,最重要的是解决问题的效率,主要是两个因素: 空间的分配效…
-
ABC263 G – Erasing Prime Pairs
拆点 + 最大流 G – Erasing Prime Pairs (atcoder.jp) 题意 有 n(n <= 100)种互不相同的数,分别是 /(A[i]/…
-
ABC266 – E,F Solutions
目录 ABC266 – E,F Solutions E – Throwing the Die Problem Statement Solution Impl…