搜索资源列表
nixu2
- 对输入的字符串进行逆序,包括设计试验的文档说明-of input strings in Reverse, including design documentation shows
三相电压不平衡条件下锁相环的设计与实现
- 为了保证并网逆变器、静止同步补偿器等电力电子装置在三相不平衡、畸变或 电压突降条件下正常工作,要求必须研究使用高性能锁相电路跟踪检测技术,能够快 速、准确地锁定正序基波电压相位。本文针对三相电压不平衡等现象研究了锁相环 的设计及实现,主要包括以下几方面: 首先,介绍了课题研究的背景及意义,并对锁相环的工作原理、种类及其发展状 况作了较为全面的综述,总结了并网变换器对锁相环技术的基本要求。 其次,在分析基于单同步参考坐标系的软件锁相环(SSRF SPLL)的结构和工作原 理的基础上,
c++
- 在线性表的实现中增加一个成员函数,实现对表中元素置逆的操作(设原链表为a1,a2,...,an 则置逆后的序列为an,...,a2,a1)。对于具有n个元素的线性表,你的算法的运行时间应为O(n),空间消耗应为O(1). 注:有对时间和空间分析的说明
java-code1
- 给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字-Give a positive integer of not more than 5, requirements: First, find it is by several orders, second, reverse printing out the digits
Reversebinary
- 基本的位运算中的二进制逆序操作,有详细的说明-The basic binary-bit computing in the reverse operation is described in detail
IOSystemCall
- 在LINUX平台用c编程逆序一个文本文件,显示逆转结果的必须是原文件名。分别用两种方法:(task1):标准C的IO库函数(task2):Unix的IO数-In the LINUX platform using c programming reverse a text file, showing the result must be a reversal of the original file name. Were used in two ways: (task1): Standard C-I
Java_code1
- 将一个数组逆序输出,可是运行且能正确实现功能-Will be an array in reverse order output, but the operation can correct functions
Reverse-the-string-output
- 字符串逆序输出,使用了三种不同的方法,在不同的约束条件下进行选择-String reverse output, the use of three different methods under different constraints selected
java_4
- 给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。-Give a positive integer of not more than 5, the requirements: First, find it is by several orders, second, reverse printing out the digits.
cccc
- 给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。- 允许输入拉丁字符的拼音 英语 中文(简体) 日语 G
sxj5
- .讲一个数组中的值按逆序重新存放并显示出来。-Talk about an array of value in reverse order to re-stored and displayed.
matlab
- 文章运用m atlab语言给出了二维动态规划逆序算法的程序, 并且通过两个数值实例验证了该程序的有效性, 同时也表明了该程序对动态规划问题具有一定的通用性。-By applying m atlab language gives the two-dimensional dynamic programming algorithm reverse the procedure, and by two numerical examples demonstrate the effectiveness of
1
- 实现线性表的链式存储结构—线性链表。 从文件输入一批整数,建立有序链表(升序),并完成: 查找一个指定元素 插入一个给定元素 删除一个指定元素 统计链表的长度 输出线性链表 实现链表的逆序重建-The linear form of chain store structure- linear list. Enter the number of integers from a file, to establish orderly list (ASC), and compl
BNUTBDJNBOOFR
- 【程序29】 题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。 1. 程序分析:学会分解出每一位数,如下解释:(这里是一种简单的算法,师专数002班赵鑫提供) 2.程序源代码: 复制代码 代码如下: #include stdio.h #include conio.h main( ) { long a,b,c,d,e,x scanf( ld ,&x) a=x/10000 分解出万位 b=x 10000
chengxu
- 用C语言编写的程序能够实现链表逆序的功能-Written in C language program to realize the reverse order on the list of functions
sm4算法
- 本算法是一个分组算法。该算法的分组长度为 128 比特,密钥长度为 128 比特。加密算 法与密钥扩展算法都采用 32 轮非线性迭代结构。解密算法与加密算法的结构相同,只是轮 密钥的使用顺序相反,解密轮密钥是加密轮密钥的逆序
HNOI2009逆序对数列代码
- HNOI2009逆序对数列这道题是一个dp,但是需要一个前缀和优化,很简单!