搜索资源列表
test_question_C
- 一些常见C试题的源代码,如字符串倒置、符号算式求解、矩阵逆置等。
C源代码实例
- 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014 求解二维数组的最大/最小元素 015 利用数组求前n个
WL40987330 C语言算法集
- 目录 第一部分 基础篇 001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010&
zfcnrnz
- 函数的功能是把字符串中的内容逆置。 例子如:字符串中原有的内容为:abcdefg,则调用该函数后,串中的内容为:gfedcba-Function is the function of the contents of the string against the home. Examples such as: Some of the contents of the Central Plains as a string: abcdefg, then call the function, the
ArrayLlist
- 分别用顺序表和单链表作为存储结构,完成:(1)实现线性表(a0, a1, a2, a3, …,an-1)就地逆置的操作。(2)实现将x插入一个递增有序表L中,并使L仍是一个有序表。(3)实现统计在一个输入字符串中各个不同字符出现的频度。 -Were used to sequence the table and a single list as the storage structure, completed: (1) to achieve a linear form (a0, a1, a2, a
list-set-reverse
- 用户输入字符串,以链表的形式存入,然后链表逆置,输出-User input string to the list in the form of deposit, and then reverse the list set, the output
P50
- 编一个函数fun(char *s),函数的功能是把字符串中的内容 逆置。 例如:字符串中原有的字符串为:abcdefg, 则调用该函数后, 串中的内容为:gfedcba。 注意: 部分源程序存在文件PROG1.C文件中。-Compile a function fun(char*s),which could reverse the contents of the string.
1
- 编一个函数fun(char *s),函数的功能是把字符串中的内容逆置。例子如:字符串中原有的内容为:abcdefg,则调用该函数后,串中的内容为:gfedcba。-There is a function (s), (char* () function is to the contents of the string functions of inverse. Example: the string content for: abcdefg, call this function, the con
invertsub
- 子串逆置 【问题描述】 输入两行字符串s和t(s和t可以含空格,length(t)≤length(s)≤50),将s串中首次与t匹配的子串逆置,并将处理后的s串输出。
Basestring
- 给字符串类赋值,输出原字符串,复制字符串,将字符串逆置,比较两字符串的大小。-Assigned to the string class, the output of the original string, copy the string, the string against the home, comparing the size of two strings.
10-15
- 字符串逆置,本程序较好的诠释了在c语言中对字符串的逆置操作。 -The inverse set of the string,this is very easy programme.
String-reverse-position
- 写一个自定义函数实现字符串逆置。实现了一个字符串的就地逆置-A custom function realization string inversion,The realization of a string of in situ reverse home
homework_2.22
- 对单链表实现就地逆置,即利用原表的存储空间将线性表(a1,a2,…,an)逆置为(an,an-1,…,a1)。输入数据:文本文件input.txt 文件分2行: 第1行是单链表的数据元素个数n,n<20。如果n<1或n>19则视为输入数据出错。 第2行是单链表的n个数据元素,每个元素都是-999~999之间的十进制整数,元素之间用空格分开。 输出数据:文件output.txt 文件只有1行: 第1行是完成逆置之后的单链表n个元素的十进制整数,每个元素
CPP
- 使用C++数据结构实现字符串的就地逆置。-Using C++ data structures to achieve local Retrograde string.
1156
- 编一个函数fun(char *s),函数的功能是把字符串中的内容逆置。例子如:字符串中原有的内容为:abcdefg,则调用该函数后,串中的内容为:gfedcba。-There is a function (s), (char* () function is to the contents of the string functions of inverse. Example: the string content for: abcdefg, call this function, the con
191-206
- C语言编写的几个程序源码,包括: 191 比较字符串长度 192 合并整数 193 矩阵逆置 194 删除指定的字符 195 括号匹配 196 字符串逆置 197 SIX/NINE问题 198 单词个数统计 199 方差运算 200 级数运算 201 输出素数 202 素数题 203 序列排序 204 整数各位数字排序 205 字符串字母移位 206 Fibonacc数列 -C language sourc
include
- 是s所指的字符串中的内容逆置。例如,字符串原有的字符串为abcdefg,则调用该函数后,字符串中的内容为gfedcba(invert the contents of the string that s is referring to.)