-
牛顿迭代法解方程组 写得比较简单 但是使用
牛顿迭代法解方程组 写得比较简单 但是使用-Newton" s iterative method solution of equations written in relatively simple, but the use of
- 2022-02-05 16:37:23下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
一个用C++写的大数运算类,支持大数的加,减,乘,除和模运算,速度快。...
一个用C++写的大数运算类,支持大数的加,减,乘,除和模运算,速度快。-C wrote a majority of the computing categories, large numbers support the addition, subtraction, multiplication and addition and modular, fast.
- 2022-03-16 07:06:21下载
- 积分:1
-
C Source Code program of FFT IFFT Function
C Source Code program of FFT IFFT Function
- 2022-03-17 18:46:55下载
- 积分:1
-
sobel算法
该算法采用c++语言编写的sobel算法!简单易懂!主要用于提取图像的边缘!特别适合于初学Opencv的人士学习使用。
- 2023-08-14 13:40:04下载
- 积分:1
-
MFC简易计算器
基于对话框用以+ - * / 计算,,,并且采用了较为简单的语言特点,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
- 2023-01-05 20:45:05下载
- 积分:1
-
趣味问题的程序原代码 海滩上有一堆桃子,五只猴子来分。第一只猴子把这堆桃子凭据分为五份,多了一个,这只 猴子把多的一个扔入海中,拿走了一份。第二只猴子把剩...
趣味问题的程序原代码 海滩上有一堆桃子,五只猴子来分。第一只猴子把这堆桃子凭据分为五份,多了一个,这只 猴子把多的一个扔入海中,拿走了一份。第二只猴子把剩下的桃子又平均分成五份,又多了 一个,它同样把多的一个扔入海中,拿走了一份,第三、第四、第五只猴子都是这样做的, 问海滩上原来最少有多少个桃子?- On the interest question procedure original code beach has pile
of peaches, five monkeys divide. The first monkey divides into this
pile of peach proof five, many, this monkey has thrown into many in
the sea, took away. The second monkey the peach which is left over
equally divides into five, also many, it similarly has thrown into
many in the sea, took away, third, fourth, the fifth monkey all is
does this, asked how many peaches on the beach most is originally
unusual?
- 2022-10-26 14:25:03下载
- 积分:1
-
对任意给定的n,用字典法和邻位互换法生成并打印全部排列。...
对任意给定的n,用字典法和邻位互换法生成并打印全部排列。-right to the arbitrary n, using the dictionary to law and Exchange Act o-generated and print all ranked.
- 2022-02-01 10:43:25下载
- 积分:1
-
himself in a fractal procedures and supports dynamic expression compiler
自己写的一个分形程序,支持动态编译表达式-himself in a fractal procedures and supports dynamic expression compiler
- 2022-02-15 13:27:01下载
- 积分:1
-
delphi适应的OPC控件
本人一直使用高控件,由于使用了标准的工业接口---OPC,对于硬件的要求非常灵活,可以连接众多的PLC等智能设备。另外,不要程序员自己对于繁琐的通讯协议,更不需要书写太多的通讯代码。。。。。。。。。。。。。。
- 2022-08-07 07:03:18下载
- 积分:1