数据结构-串-数组
LMengi000
这个作者很懒,什么都没留下…
展开
-
3348-数据结构实验之数组二:稀疏矩阵
数据结构实验之数组二:稀疏矩阵Problem Description 对于一个n*n的稀疏矩阵M(1 <= n <= 1000),采用三元组顺序表存储表示,查找从键盘输入的某个非零数据是否在稀疏矩阵中,如果存在则输出OK,不存在则输出ERROR。稀疏矩阵示例图如下:Input 连续输入多组数据,每组数据的第一行是三个整数mu, nu, tu(tu<=50),分别表示稀疏矩阵的行数、列数和矩原创 2017-08-22 17:29:50 · 434 阅读 · 0 评论 -
3347-数据结构实验之数组三:快速转置
数据结构实验之数组三:快速转置Problem Description 转置运算是一种最简单的矩阵运算,对于一个m*n的矩阵M( 1 = < m < = 10000,1 = < n < = 10000 ),它的转置矩阵T是一个n*m的矩阵,且T( i , j )=M( j , i )。显然,一个稀疏矩阵的转置仍然是稀疏矩阵。你的任务是对给定一个m*n的稀疏矩阵( m , n < = 10000 )原创 2017-08-22 18:10:58 · 531 阅读 · 0 评论 -
2463-学密码学一定得学程序
学密码学一定得学程序Problem Description 曾经,ZYJ同学非常喜欢密码学。有一天,他发现了一个很长很长的字符串S1。他很好奇那代表着什么,于是神奇的WL给了他另一个字符串S2。但是很不幸的是,WL忘记跟他说是什么意思了。这个时候,ZYJ不得不求助与伟大的ZP。ZP笑了笑说,这个很神奇的,WL的意思是只要你找到她给你的字符串在那个神奇的字符串的位置,你就会有神奇的发现。ZYJ恍然原创 2017-08-23 16:18:32 · 368 阅读 · 0 评论 -
H - Identity Card
H - Identity Card Do you own an ID card?You must have a identity card number in your family’s Household Register. From the ID card you can get specific personal information of everyone. The number ha原创 2017-09-13 19:26:27 · 9434 阅读 · 0 评论 -
6-2 数组元素的区间删除
6-2 数组元素的区间删除给定一个顺序存储的线性表,请设计一个函数删除所有值大于min而且小于max的元素。删除后表中剩余元素保持顺序存储,并且相对位置不能改变。函数接口定义:int Delete( int A[], int L, int minA, int maxA ); 其中A是整型数组,存储原始线性表的元素;L是表长,即A中元素的个数;minA和maxA分别为待删除元素的值域的下、上界。函数原创 2017-09-27 15:20:30 · 13217 阅读 · 2 评论 -
G - Lowest Bit
G - Lowest Bit Given an positive integer A (1 <= A <= 100), output the lowest bit of A. For example, given A = 26, we can write A in binary form as 11010, so the lowest bit of A is 10, so the output原创 2017-09-11 19:24:25 · 367 阅读 · 0 评论 -
B - Text Reverse
B - Text Reverse Ignatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them. Input The input cont原创 2017-09-12 19:07:45 · 358 阅读 · 0 评论