package homework; public class Main { public String convert(String s, int numRows) { int length = s.length(), x = 0, y = 0; String arr[][] = new Strin ...
分类:
其他好文 时间:
2019-07-08 10:39:52
阅读次数:
103
1、三角枚举,从所有无向边对中找到相互连接的三角形 2、三角枚举所需要数据结构等 3、测试数据 ...
分类:
编程语言 时间:
2019-07-06 19:05:02
阅读次数:
123
在配置Linux的 Apache服务时,经常会遇到http403错误,我今天配置测试时也出现了,最后解决了,总结了一下。http 403错误是拒绝访问的意思,有很多原因的。还有,这些问题在win平台的Apache里一样会发生!我按照经验总结的主要有以下4种原因! 本人测试的环境 是:Scientif ...
分类:
Web程序 时间:
2019-07-03 20:25:45
阅读次数:
167
function md5(string) { function md5_RotateLeft(lValue, iShiftBits) { return (lValue >> (32 - iShiftBits)); } function md5_AddUnsigned(lX, lY) { var lX... ...
分类:
Web程序 时间:
2019-07-03 10:25:58
阅读次数:
132
numpy数据转成Tensor小Demoimportnumpyasnpimporttensorflowastftemp_np=np.zeros((3,3))print(type(temp_np))#<class‘numpy.ndarray‘>tensor_temp=tf.convert_to_tensor(temp_np)#<class‘tensorflow.python.fra
分类:
其他好文 时间:
2019-07-01 12:16:07
阅读次数:
103
windows-运行: 设置启动项,查看服务状态:msconfig; 详细http://www.zhuangjiba.com/soft/7545.html 打开注册表:regedit; 详细https://baike.baidu.com/item/regedit/6103411?fr=aladdin ...
分类:
其他好文 时间:
2019-07-01 10:57:07
阅读次数:
123
作者:IT_faquir 原文:https://blog.csdn.net/IT_faquir/article/details/78025203 个人学习所用,如有侵权,请联系删除! 本文主要罗列Spring|SpringMVC相关注解的简介。Spring部分1.声明bean的注解 @Compone ...
分类:
编程语言 时间:
2019-06-30 14:18:42
阅读次数:
119
https://github.com/Bogdan-Lyashenko/js-code-to-svg-flowchart js2flowchart - a visualization library to convert any JavaScript code into beautiful SVG ...
分类:
Web程序 时间:
2019-06-30 09:29:36
阅读次数:
230
题目链接 : https://leetcode cn.com/problems/convert sorted array to binary search tree/ 题目描述: 将一个按照升序排列的有序数组,转换为一棵高度平衡二叉搜索树。 本题中,一个高度平衡二叉树是指一个二叉树每个节点 的左右两 ...
分类:
编程语言 时间:
2019-06-28 21:11:29
阅读次数:
138
题目链接 : https://leetcode cn.com/problems/convert sorted list to binary search tree/ 题目描述: 给定一个单链表,其中的元素按升序排序,将其转换为高度平衡的二叉搜索树。 本题中,一个高度平衡二叉树是指一个二叉树每个节点 ...
分类:
其他好文 时间:
2019-06-28 20:57:34
阅读次数:
109