-
graph
matlab、C代码,实现图论中的大部分算法,包括kruskal、Dijkstra、prim、hamilton等
(Matlab,C code for most algorithms of graph theory.)
- 2012-05-07 22:37:00下载
- 积分:1
-
sjrsalizattonmatrix
分别编写一个程序实现三种基本排序运算, 1 编写一个程序实现直接插入排序过程,并输出 9,8,7,6,5,4,3,2,1,0 的(Write a program to realize three basic sort operations, 1 write a program to realize the direct insertion sorting process, and output 9 / 8 / 7 / 6 / 5 / 4 / 3 / 3 / 2 / 1 / 0.)
- 2018-09-04 04:59:06下载
- 积分:1
-
C# 算二十四(算24)解题器 程序源码下载
传统游戏“算二十四”的解题工具。用于列出所有解题可能性。可以扩展解题思维。
- 2015-04-07下载
- 积分:1
-
socket
socket头文件,VC++6.0头文件库中不存在,下载后即可方便使用。(socket header files, VC++6.0 library header file does not exist, you can download easy to use.)
- 2013-10-17 09:10:00下载
- 积分:1
-
c语言进阶
说明: 是学习C/C++的学习用书,适合初步了解C/C++的人员使用(It is a book for learning C / C + +, suitable for people who have a preliminary understanding of C / C + +)
- 2020-05-13 22:24:43下载
- 积分:1
-
task1
binary reading implementation
- 2015-03-07 14:09:56下载
- 积分:1
-
UltraVNC_1053_src
UltraVnc 1.0.5.3 src
- 2010-05-19 18:42:05下载
- 积分:1
-
c# developed an RPG framework, using the DirectDraw
c#开发的一个RPG的框架,用了directdraw-c# developed an RPG framework, using the DirectDraw
- 2023-02-18 23:55:03下载
- 积分:1
-
stm32 ADC多通路采样
stm32 ADC多通路采样
#include "adc.h"
#define ADC1_DR_Address ((uint32_t)0x4001244C)
__IO uint16_t ADCConvertedValue[2];
void Adc_Init(void)
{
GPIO_InitTypeDef GPIO_InitStrue;
ADC_InitTypeDef ADC_InitStrue;
DMA_InitTypeDef DMA_InitStructure;
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);//DMA时钟使能
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_ADC1,ENABLE);//GPIO、ADC1时钟使能
RCC_ADCCLKConfig(RCC_PCLK2_Div6);//ADC时钟6分频
GPIO_InitStrue.GPIO_Mode = GPIO_Mode_AIN;
GPIO_InitStrue.GPIO_Pin = GPIO_Pin_1|GPIO_Pin_2;
GPIO_InitStrue.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA,&GPIO_InitStrue);//PA1、PA2 I/O口配置
DMA_DeInit(DMA1_Channel1);//DMA通道1复位
DMA_InitStructure.DMA_PeripheralBaseAddr = ADC1_DR_Address;
- 2023-05-09 20:05:03下载
- 积分:1
-
led
单片机应用程序学习 简单入门教程例程学习 1.闪烁的LED(SCM applications to learn learn simple routines Tutorial 1. Flashing LED)
- 2011-01-01 23:34:28下载
- 积分:1