最近跟zyy连麦谈理想耽误了些时间(每天最多也就六七个小时吧), 所以最近一直在水更呜呜呜 ,我去学习呜呜呜 迷宫基本思路一般都是dfs(深搜) 这样相当于二维数组了 用vis[n][n]数组记录走过的情况 啊啊啊啊今天学习状态有点不太好,身体有些不舒服emmmmm 1551今天早早歇了,希望明天状 ...
分类:
其他好文 时间:
2020-07-11 23:03:04
阅读次数:
56
阅读目录 前言 先从Effects11(FX11)谈起 Pass、Technique11、Group 渲染状态、采样器状态 常量缓冲区 隐藏指定寄存器槽的问题 常量缓冲区的更新 默认常量缓冲区(Default Constant Buffer) 着色器反射 D3DReflect函数--获取着色器反射对 ...
分类:
其他好文 时间:
2020-07-11 19:34:36
阅读次数:
68
ylbtech-JavaScript-Runoob:JavaScript while 循环 1.返回顶部 1、 JavaScript while 循环 只要指定条件为 true,循环就可以一直执行代码块。 while 循环 while 循环会在指定条件为真时循环执行代码块。 语法 while (条件 ...
分类:
编程语言 时间:
2020-07-11 19:24:01
阅读次数:
67
一. jQuery基础及选择器 1.补充: jQuery是js的类库 (1)jQuery的设计思想:write less,do more (2)jQuery的优势: 1》体积小 2》强大的选择器 3》出色的DOM封装 4》可靠的事件处理机制 5》出色的浏览器兼容性 2.在页面中引入jQuery <s ...
分类:
Web程序 时间:
2020-07-11 19:20:05
阅读次数:
77
需求: 某软件的Log文件,其中的日期格式为'yyyy-mm-dd': ..... 2016-05-23 10:59:26 status upacked python3-pip.all 2016-05-23 10:59:26 status half-configured python3-all 20 ...
分类:
其他好文 时间:
2020-07-11 17:32:07
阅读次数:
45
算数运算符 var a = 3; var b = 4; document.write(a+b +"<br>"); document.write(a-b +"<br>"); document.write(a*b +"<br>"); document.write(a/b +"<br>"); docume ...
分类:
Web程序 时间:
2020-07-11 00:10:24
阅读次数:
949
Maximum Width of Binary Tree (M) 题目 Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maxim ...
分类:
其他好文 时间:
2020-07-10 10:11:00
阅读次数:
54
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:
其他好文 时间:
2020-07-10 10:07:44
阅读次数:
60
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:
其他好文 时间:
2020-07-10 09:54:38
阅读次数:
54
for (char i = 'A'; i <= 'Z'; i++) { //Response.Write(i.ToString() + "," + ((int)i).ToString()); } for (int i = 65; i < 91; i++) { //Response.Write((ch ...