Leetcode.345 Reverse Vowels of a String Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Input: "hell ...
分类:
其他好文 时间:
2020-08-06 09:30:08
阅读次数:
64
网页中添加 jQuery 下载 jQuery 库 从 CDN 中载入 jQuery, 如从 Google 中加载 jQuery 下载 jQuery 有两个版本的 jQuery 可供下载: Production version - 用于实际的网站中,已被精简和压缩。 Development versi ...
分类:
Web程序 时间:
2020-08-05 19:45:06
阅读次数:
97
基于V6模板做的库文件以及基于库文件的工程。 库文件生成,含GCC,MDK和IAR GUIX Lib Create.7z (2.55 MB) 基于库文件的工程,可以在我们V6板子上面跑,含MDK,IAR和GCC GUIX Lib Example(MDK, IAR, GCC).7z (4.97 MB) ...
分类:
其他好文 时间:
2020-08-05 16:54:27
阅读次数:
74
xpath简介 xpath是一门可以在xml文档中查找信息的语言 /: 从根节点选取 //: 不管位置,直接找 /@href 属性名 /text() xpath选择器操作 doc=''' <html> <head> <base href='http://example.com/' /> <title ...
分类:
其他好文 时间:
2020-08-05 00:06:37
阅读次数:
77
<!DOCTYPE html> <html> <head> <title>Selectbox Example</title> <script type="text/javascript" src="EventUtil.js"></script> </head> <body> <form method ...
分类:
其他好文 时间:
2020-08-02 16:17:01
阅读次数:
107
题目描述 给出一组数字,返回该组数字的所有排列 例如: [1,2,3]的所有排列如下 [1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2], [3,2,1]. (以数字在数组中的位置靠前为优先级,按字典序排列输出。) Given a collection of number ...
分类:
其他好文 时间:
2020-08-01 21:38:13
阅读次数:
111
题目描述 给定一个二叉树和一个值sum,判断是否有从根节点到叶子节点的节点值之和等于sum的路径, 例如: 给出如下的二叉树,sum=22, 5 / \ 4 8 / / \ 11 13 4 / \ \ 7 2 1 返回true,因为存在一条路径5->4->11->2的节点值之和为22 Given a ...
分类:
其他好文 时间:
2020-08-01 12:30:47
阅读次数:
70
参考:https://my.oschina.net/ccLlinux/blog/1859116基本命令:rsync[OPTION]…SRC(需要备份的原文件)DEST(Push的位置)example:download:rsync-avuser@hostip:/scratch/test/test_sh.sh/Users/username/test/test.sh上传:rsync-av/Users/u
分类:
其他好文 时间:
2020-07-30 22:22:12
阅读次数:
96
""" Multilayer Perceptron. A Multilayer Perceptron (Neural Network) implementation example using TensorFlow library. This example is using the MNIST d ...
分类:
其他好文 时间:
2020-07-30 14:32:23
阅读次数:
68
线程池工作流程: 1、如果正在运行的线程数量小于 corePoolSize,那么马上创建线程运行这个任务 2、如果正在运行的线程数量大于或等于 corePoolSize,那么将这个任务放入队列 3、如果这时候队列满了,而且正在运行的线程数量小于 maximumPoolSize,那么还是要创建非核心线 ...
分类:
编程语言 时间:
2020-07-29 00:47:33
阅读次数:
96