搜索资源列表
C源代码实例
- 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014
WL40987330 C语言算法集
目录
第一部分 基础篇
001 第一个C程序
002 运行多个源文件
003 求整数之积
004 比较实数大小
005 字符的输出
006 显示变
all
- C语言写的大部分算法问题,比如回文数,素数,等。-Most algorithms written in C language problems, such as palindrome, prime, and so on.
String-reverse
- 符串逆序输出是C语言经典算法之一,过去利用数组下标处理此类问题,较为繁琐,本文给出 了利用指针实现任意给定字符串的逆序输出方法,以及在此基础上进行回文字符串判断的便捷方法。-Pointers with a C-string string in reverse order and determine palindrome
a
- 比n大的最小回文数问题,c语言简单实现。 主要考虑n的长度为奇数和偶数-Smallest palindrome larger than n, c language simple. The main consideration of the length of n for odd and even
five-classic--C-code
- 里面有五个C语言初学者遇到的经典递归问题的代码及详解!八皇后、回文、顺转矩阵、斐波那契及整数分划问题。-There are five classic C language for beginners recursive problems encountered by the code and explain! Eight queens, palindrome, clockwise rotation matrix, Fibonacci a
回文
- 数据结构解决c语言中的回文问题,使用堆栈队列等(The data structure solves the palindrome problem in the C language, using the stack queue, etc.)
3-1
- 【问题描述】 输入一个长整数,判断其低5位是否为回文(个位=万位,十位=千位)。如果是输出"this number is a huiwen",否则输出"this number is not a huiwen" 【输入出样例1】 14741 this number is a huiwen 【输入出样例2】 14742 this number is not a huiwen 【输入出样