搜索资源列表
PyChem
- PyChem是用Python语言编写的多元变量分析软件。它包括一个前端图形界面用于管理和保存试验数据,并用多元分析的算法分析试验数据。主要的目录结构如下: PyChem\\PURELIB\\pychem 包括前端界面的管理和数据保存,以及核心的分析算法 PyChem\\PURELIB\\pychemlib 包括一些必要的支持库-PyChem Python language is used to prepare the multivariate analysis software. It
24dian.tar
- 用python编写的24点程序,改进后同时可以计算寻找诸如(((1+2)*3-4)+5*6*7+8)*9 = 2007这样的解法-python with 24 points prepared by the procedures, improved for the same time can be calculated as (((1) * 3-4) 5 6 * 7 * 8) = 2007 * 9 this The Solution
DE.python
- Python实现的差分进化算法源代码 使用Python实现的差分进化算法,引用到Numpy和Scipy,可以支持多核与集群并行计算。使用时只需继承DESolver并定义函数def error_func(self, indiv, *args)作为目标函数即可。-Python implementation of the differential evolution algorithm source code uses the Python implementation of the differ
decisiontree
- 这个是一个关于建立决策树的python程序.本程序运用entropy来决定splitting point.处理的数据得在程序中输入.希望大家觉得有用-This is a decision tree on the establishment of procedures for the python. Entropy of the process to decide the use of splitting point. Deal with the data was input in the pro
queen
- 用Python实现的八皇后问题-Using Python to achieve the eight queen problem
DataStructuresandAlgorithmswithObject-OrientedDesi
- 用python阐述数据结构及其性能的教科书-Data structure using python and its performance on textbooks
PythonDataStructuresandAlgorithms
- python 数据结构与算法的电子文档。-electronic documents of python data structures and algorithms.
Opus7-1.0.tar
- Opus7-1.0 数据结构代码,python-Opus7-1.0 data structure code, python
100programs-in-Python
- 一百个用Python实现的小算法或小程序!绝对实用!如: 【程序56】 题目:画图,学用circle画圆形。 1.程序分析: 2.程序源代码: #include "graphics.h" main() { int driver,mode,i float j=1,k=1 driver=VGA mode=VGAHI initgraph(&driver,&mode,"") setbkcolor(YELLOW) fo
python-sort
- python 排序算法的实现,包括插入、堆 、快速、冒泡、希尔、选择等!-The realization of Python sorting algorithm, including insert, heap Quick, Hill, bubble, etc., choose!
python-Algorithm
- python 的一些数据算法,包括回潮算法、邻位对换法、切片、全排列、身份证校验-Some of the data of the python algorithm, including the resurgence of algorithm, ortho transposition method and slicing, full permutation, ID check etc.
python_Class.py
- python 类例程,人、学生、老师以及异常的简单运用(Python class routines, people, students, teachers, and unusual simple use)
dataStructure
- python版数据结构,包括常用的各大排序方法(Python version of the data structure, including the commonly used major sorting methods)
数据结构与算法 Python语言描述_裘宗燕.pdf
- 数据结构与算法 Python语言描述_裘宗燕(Data structures and algorithms described in Python language _ Qiu Yan Zong)
python algorithms
- 用python语言实现的常用算法,很适合小白学习入门(Common algorithms implemented in Python language)
dataStructurePython
- python实现队、栈等数据结构,其他结构后续补充(this code implement the queue and stack data structure. the other data structure is coming later.)
数据结构python
- 很多数据结构用C++和java写的,这里我用python写的一些数据结构的实现(Write LinkNodes using python)
快速排序Python
- 快速排序算法的Python实现,最下方是例子,直接运行即可看到原始数组和排序后数组
cycle_output
- 使用Python语言,利用递归的方式,实现顺时针输出整个矩阵中的每一个元素。同时还写了实现这个方法的超级简化版代码,体现了Python编程语言简洁的优点(Using Python language and recursive method, each element of the whole matrix can be output clockwise. At the same time, the simplified code to implement this method is also
Python-Jump-Point-Search
- python版本的jps寻路算法源码。jps是A*的优化版本,通过跳过一系列不需要遍历的点达到节省计算量的目的。