上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 81 下一页
摘要: 参考: https://www.cnblogs.com/onepixel/articles/7674659.html 这个博客写的很好,而且还有每个排序算法的动画,非常值得一看。 一、概览 二、java实现 public class SortUtils { /** * 1.插入排序 * 从第二个元素 阅读全文
posted @ 2021-10-27 16:09 Mars.wang 阅读(160) 评论(0) 推荐(0) 编辑
摘要: from sympy import * x = Symbol('x') y = Symbol('y') print solve([2 * x - y - 3, 3 * x + y - 7],[x, y]) 输出: {x: 2, y: 1} 阅读全文
posted @ 2021-10-26 17:24 Mars.wang 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 转自:https://zhuanlan.zhihu.com/p/67462538 Python 必备软件与库 要用Python学习数学,需要借助一些库才能让它成为超越MATLAB、R、SAS等数学和统计学软件的利器,同时我们也会为大家推荐一种国外比较流行的学习方法就是Cheat Sheet(小抄,索 阅读全文
posted @ 2021-10-26 17:13 Mars.wang 阅读(370) 评论(0) 推荐(0) 编辑
摘要: sympy官方文档地址:https://docs.sympy.org/latest/index.html python的科学计算包十分强大我之前就有所感受,今天又一次把我震惊了,python竟然还能做微积分 首先安装第三方包 pip3 install sympy直接上代码 from sympy im 阅读全文
posted @ 2021-10-26 16:56 Mars.wang 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 搜索了下java的矩阵运算工具,网上有很多。这篇博文总结的特别好,https://www.cnblogs.com/jpfss/p/11533902.html,大家可以拿去。 我试用了下ujmp包,觉得还是挺好用的,网上的资料不多。特分享在这里。 依赖pom <dependency> <groupId 阅读全文
posted @ 2021-10-26 10:19 Mars.wang 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 参考: https://zhuanlan.zhihu.com/p/355997933 https://zhuanlan.zhihu.com/p/172635547 https://www.cnblogs.com/guochaoxxl/p/14382431.html https://support.t 阅读全文
posted @ 2021-10-21 14:08 Mars.wang 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 我们都知道break结束最近一层循环,continue结束本次循环 那如果我满足条件的时候想要结束两层循环怎办? java还真有这种办法 //给外层循环一个名字 outLoop: while (!queue.isEmpty()) { Graph7.Node node = queue.remove() 阅读全文
posted @ 2021-10-20 11:17 Mars.wang 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 参考: https://zhuanlan.zhihu.com/p/36229547 https://www.cnblogs.com/-citywall123/p/11322771.html https://blog.csdn.net/Patrickpwq/article/details/802108 阅读全文
posted @ 2021-10-19 11:24 Mars.wang 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/lishanlei/p/10707808.html https://blog.csdn.net/wang379275614/article/details/13990163 关键路径问题来源于实际的生产活动,是项目管理的经典问题。 在一个复杂的 阅读全文
posted @ 2021-10-18 17:20 Mars.wang 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 参考: https://zhuanlan.zhihu.com/p/54084335 https://zhuanlan.zhihu.com/p/54102723 https://www.cnblogs.com/nullzx/p/8729425.html B+树是在B-树的基础上修改得来,比B-树更简单 阅读全文
posted @ 2021-10-13 17:05 Mars.wang 阅读(129) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 81 下一页