-
SRIM-tutorials
Stopping and Range of Ions in Matter (SRIM) is a group of computer programs which calculate interaction of ions with matter the core of SRIM is a program Transport of ions in matter (TRIM). SRIM is very popular in the ion implantation research and technology community and also used widely in other branches of radiation material science.(Stopping and Range of Ions in Matter (SRIM) is a group of computer programs which calculate interaction of ions with matter . The core of SRIM is a program Transport of ions in matter (TRIM) SRIM is very popular in the ion implantation research and technology community and also used widely in other branches of radiation material science.)
- 2016-03-20 17:36:48下载
- 积分:1
-
搜索二叉树
#pragma once
template
struct Node
{
T _data;
Node* left;
Node* right;
Node(T val) :_data(val), left(NULL), right(NULL)
{}
~Node()
{}
};
template
class BinSearchTree
{
public:
BinSearchTree() :_root(0)
{}
void CreatTree(char* str)
{
int n = strlen(str);
CreatTree_(_root,str,n);
}
void comFather(char a,char b)
{
return comFather_(_root,a,b);
}
protected:
void comFather_(Node* root,char a,char b)
{
if (root->_data > a && root->_data < b)
{
cout _data _data > a && root->_data > b)
comFather_(root->left, a, b);
if (root->_data < a && root->_data < b)
comFather_(root->right, a, b);
}
void insertVal(Node*& root, char ch)
{
if (root == NULL)
{
root = new Node(ch);
return;
- 2022-02-28 12:33:19下载
- 积分:1
-
LMS321
LMS算法仿真,通过matlab仿真LMS算法的收敛速度(lms)
- 2010-05-28 09:58:31下载
- 积分:1
-
tsu_izv_Estestven_nauki_2009(3)
paper for research science
- 2013-09-15 18:15:26下载
- 积分:1
-
Thanhtoan
Programming for SHT71 sensor using C51 for 89C51
- 2011-12-07 16:43:34下载
- 积分:1
-
ADC1
有关AVR的单片机adc的源代码,阐述详尽,便于使用(ADC OF AVR )
- 2013-06-05 21:45:39下载
- 积分:1
-
MATLAB
说明: matlab教程基础功能学习,适合初学者,简单清晰(matlab)
- 2010-04-29 10:07:54下载
- 积分:1
-
DHT11数字温湿度传感器
基于stm32f103zet6的dht11驱动源码,可实现温湿度的检测与显示(Stm32f103zet6 based DHT11 driver source code, you can achieve temperature and humidity detection and display)
- 2020-10-08 15:57:35下载
- 积分:1
-
MATLAB-IMAGE
matlabr软件应用的图形图像处理,很专业的教材,事例很多(matlabr graphic image processing software applications, very professional materials, many examples)
- 2013-11-22 17:25:08下载
- 积分:1
-
Books-Management-System-
《c++项目开发全程实录》一书中图书管理系统开发的讲解录像和相应源代码
(something about a book C++ project development: a memoir .
books management system management system development and application of video and the interpretation of the source code
)
- 2016-08-29 17:50:08下载
- 积分:1