// 全局通用日志工具 function setlog($param = [],$result = [],$name='',$filename = '',$path = ''){ if (!$path) { $path = BASE_PATH.'../../logs/'; } if (!$filen ...
分类:
Web程序 时间:
2020-06-17 12:58:54
阅读次数:
82
最终的效果图 原easyui-combotree样式 Html <select id="select_order_type" name="select_order_type" class="easyui-combotree" multiple style="width:140px;"></selec ...
分类:
其他好文 时间:
2020-06-17 10:58:19
阅读次数:
246
1 #-*- coding = utf-8 -*- 2 #@Time : 2020/6/16 20:52 3 #@Authur : Agur Zheng 4 #@File : loop_exercise.py 5 #@Software : PyCharm 6 7 # for循环,范围是包括起点不包括 ...
分类:
编程语言 时间:
2020-06-16 23:30:06
阅读次数:
77
运行JSOP,开始优化吸波结构,经过100代进化后,进化曲线如下 可以看到,种群在大约第35代开始收敛,最终收敛于-5.2。打开interface/result.txt,我们可以看到每一代的所有个体、平均适应度和最佳个体。 为了查看进化出的最佳个体的效果,我们找到result.txt的倒数第二行: ...
分类:
其他好文 时间:
2020-06-16 23:09:55
阅读次数:
64
1. TensorFlow model import math import numpy as np import h5py import matplotlib.pyplot as plt import scipy from PIL import Image from scipy import nd ...
分类:
Web程序 时间:
2020-06-16 20:28:35
阅读次数:
54
正则表达式这道题对我来说是真的难,花了两天的时间才做出来。 做这道题首先需要注意的是点号`.`可以匹配任何字符,字符加星号`*`表示零个或者多个该字符,例如a*表示零个或者多个a,所以对于正则表达式中,后面不跟*的字符,在字符串s中必须找到对应的字符,对于正则表达式中后面跟*的字符,则可以不必找到对 ...
分类:
其他好文 时间:
2020-06-16 15:15:59
阅读次数:
55
修改B的设备编号 <H3C>system-view System View: return to User View with Ctrl+Z. [H3C]irf member 1 renumber 2 Renumbering the member ID may result in configura ...
分类:
其他好文 时间:
2020-06-16 13:30:42
阅读次数:
92
C#支持方法的重载:方法名相同,但是方法的参数或参数类型不同。 class ResultDisplayer { public void DisplayResult(string result) { // implementation } public void DisplayResult(int r ...
437. 路径总和 III 给定一个二叉树,它的每个结点都存放着一个整数值。找出路径和等于给定数值的路径总数。路径不需要从根节点开始,也不需要在叶子节点结束,但是路径方向必须是向下的(只能从父节点到子节点)。二叉树不超过1000个节点,且节点数值范围是 [-1000000,1000000] 的整数。 ...
分类:
其他好文 时间:
2020-06-15 20:54:51
阅读次数:
70