资源列表
exprement-B
- 科学计算器的算法,能进行各种计算,基本上除了复数的计算,其他都可以-Scientific calculator algorithm
mona6
- 利用VC++6.0编程,用较简便的方法求三个浮点数中的最大数。-Programming using VC++6.0, with a more convenient way to find the maximum of three floating-point number.
simple_linked_list
- Functions to create and manage linked-lists in C language. It includes node sorting and searching implementing quicksort and binary-search algorithms.
KMP-algorithm
- KMP算法是一种用于字符串匹配的算法,这个算法的高效之处在于当在某个位置匹配不成功的时候可以根据之前的匹配结果从模式字符串的另一个位置开始,而不必从头开始匹配字符串-KMP string pattern matching algorithm
Array-Randomize-(Discrete)
- A VB program to randomize data entered in an array
doublinklist
- Double linked list- a doubly-linked list is a linked data structure that consists of a set of sequentially-linked records called nodes. Each node contains two fields, called links, that are references to the previous and to the next node in the seque
bubble
- Selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted for its simplicity,
insertion
- Insertion sort is a simple sorting algorithm: a comparison sort in which the sorted array (or list) is built one entry at a time. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort
optimizer
- a cpp code for particle swarm optimization method
psomain
- a main test code of pso method
dgmopso
- Another cpp file for the pso method of solving optimization problems
optimizer
- One part of the pso method for solving optimization, it is necessary in realizing the algorithm