搜索资源列表
exp1
- 需要利用有序链表来实现一元稀疏多项式的表示及加法运算的简单计算程序,其基本功能有: (1)输入并建立两个多项式; (2)多项式f1(x)与f2(x)相加,建立和多项式f3(x); (3)输出多项式f1(x),f2(x),f3(x)。-Need to use ordered lists to implement a dollar sparse representation of polynomials of simple addition operations and calculat
QPSK-I-Q
- matlab仿真程序,产生QPSK调制的信号,严格按照QPSK的调制步骤分I路Q路产生信号,最后两路相加,产生已调信号,调制信号随机产生,载波信号是余弦信号。-matlab simulation program to produce the QPSK modulation signal, in strict accordance with the QPSK modulation of the sub-step road Q road I have a signal, the sum of the
xishujuzhen
- 用户可以任意输入两个矩阵,该程序的功能实现对两个矩阵的压缩并进行相加-Users can enter any two matrices, the program functions to achieve the compression of the two matrices and make the sum of
assign4
- 第1部分 该纳契系列:0,1 ,2,3,5,8,13,21,...。开始的条款0和1,并有 每一个成功的财产一词,是前两个条件的总和。编写一个非递归 功能纳契(n)到显示的前n个Fibonacci数。观看停止对样品标志 在最后显示的数字输出(它不是逗号)。编写一个简短的UNIX shell脚本来运行 您的斐波那契程序。 第2部分 编写一个C程序,使用UNIX进程管理工具。您将使用fork()函数 产卵的三子进程。每个子进程将使用execlp()函数来运行
222
- 在一个园形操场的四周摆放N堆石子(N≤100),现要将石子有次序地合并成一堆。规定 每次只能选相邻的两堆合并成新的一堆,并将新的一堆的石子数,记为该次合并的得分。 编一程序,由文件读入堆数N及每堆的石子数(≤20), ①选择一种合并石子的方案,使得做N-1次合并,得分的总和最小; ②选择一种合并石子的方案,使得做N-1次合并,得分的总和最大。 -Playground in a park-shaped stone piles around the place N (N
xishujuzhen
- 稀疏矩阵的运算程序。该设计程序的功能是由键盘输入稀疏矩阵中非零值的行标,列标和元素值构成的三元组顺序表,这样就确定了整个矩阵,再使两个矩阵以三元组表形式求和、差、乘积并将运行的结果输出,本程序主要用到的知识是以顺序表形式存储稀疏矩阵,再用链表对其进行操作,来通过三元组判断位置、非零值运算实现稀疏矩阵的加、减、乘等运算。-Sparse matrix computation program. The design process is the function of keyboard input s
generateregularmatrix
- 特殊随机矩阵的生成,包含两个程序,一个可以随机生成行和和列和均为K的0-1矩阵,另一个可以随机生成稀疏矩阵。-Matrix generation,concluding two program,one can generate the 0-1 matrix that have the same row sum and column sum,the other can generate sparce matrix.
sum
- 此程序写了,任意给定两个数,互相作为底数和指数,再求和。如果不满足条件,报错。-This program was made, any given two numbers to each other as the base and index, and then sum. If does not meet the conditions, an error.
prime
- 这个程序给出4到100000000中所有的偶数都是可以由两个质数的和。-This program will solute a problem every even number can be a sum of two prime numbers.
a.c
- Finding special triples of the form (n, n + 1, n + 2) Write a program that finds all triples of consecutive positive three-digit integers each of which is the sum of two squares, that is, all triples of the form (n, n + 1, n + 2) such that:
f.c
- Obtaining a sum from a subsequence of digits Write a program that prompts the user for two numbers: an unsigned long , say digits, and an int, say sum, and outputs the number of ways of selecting digits from digits that sum up to sum. For instance,
add_polyn
- 实现两个一元多项式的输入及相加的,采用的是链表作为程序的数据结构-Polynomial realization of two one and the sum of the input, using the linked list data structure as a program
Sum-two-big-numbers
- By using this program we can sum two big numbers (at last 1000 digits) whit each other.
c
- 问题描述 有多个可供选择的村庄坐落在笔直的高速公路旁。高速公路被表示为一个整数轴,每个 村庄有一个整数坐标表示其位置。两个村庄不会在同一个位置。在两个位置之间的距离是其 整数坐标的差的绝对值。 现在要选择一些村庄,在这些村庄里建小学。小学位置的选择应该使每个村庄和离该村 庄最近的小学之间的距离的总和最小。注意小学只能建立在某个村庄,小学的位置视为该村 庄的位置。 实验任务 请你写一个程序,给出的村庄的位置和要建立的小学的数量,计算每个村庄和它最近的 小学之间的
Nonhypotenuse-Numbers.c
- A nonhypotenuse number is a positive integer whose square cannot be expressed as the sum of two nonzero integer squares. a C program to find the 20,000th nonhypotenuse number. print out the first 100 nonhypotenuse numbers for verification purpose.