前端开发
编程语言
数据库
服务器
系统/运维
网络/安全
移动开发
CMS教程
网站运营
保存到桌面
关于我们
收藏本站
素材狗

素材狗

  • 首页
  • 学习HTML/CSS
  • 学习PHP
  • 学习JAVA
  • 学习CMS
  • 编程问答
  • 实例代码
  • 学习Python学习Go学习Ruby学习C学习C++学习Perl学习Lua学习Rust学习Scala学习VB
  • 手机随时阅读

编程教程

前端开发

编程语言

数据库

服务器

系统/运维

网络/安全

移动开发

CMS教程

网站运营

前端问题

php问题

Java问题

Python问题

C/C++问题

C#/.NET问题

移动开发问题

数据库问题

07 12
C语言库isprint()函数

C语言库isprint()函数

#include stdio.h#include ctype.hint main () {int var1 = k;int var2 = 8;
发布于104天前
0 阅读
07 12
C语言数据结构在给定的索引数组后插入

C语言数据结构在给定的索引数组后插入

#include stdio.h#define MAX 5void main() {int array[MAX] = {1, 2, 4, 5};int N = 4;// number of elements in array
发布于104天前
0 阅读
07 12
C语言数据结构合并排序

C语言数据结构合并排序

#include stdio.h#define max 10int a[11] = { 10, 14, 19, 26, 27, 31, 33, 35, 42, 44, 0 };int b[10];
发布于104天前
0 阅读
07 12
C语言数据结构插值查找

C语言数据结构插值查找

#includestdio.h#define MAX 10// array of items on which linear search will be conducted. int list[MAX] = { 10, 14, 19, 26, 27, 31, 33, 35, 42, 44 };
发布于104天前
0 阅读
07 12
C语言数据结构哈希表

C语言数据结构哈希表

#include stdio.h#include string.h#include stdlib.h#include stdbool.h#define SIZE 20
发布于104天前
0 阅读
07 12
C语言数据结构插入排序

C语言数据结构插入排序

#include stdio.h#include stdbool.h#define MAX 7int intArray[MAX] = {4,6,3,2,1,9,7};void printline(int count) {
发布于104天前
0 阅读
07 12
C语言数据结构选择排序程序

C语言数据结构选择排序程序

#include stdio.h#include stdbool.h#define MAX 7int intArray[MAX] = {4,6,3,2,1,9,7};void printline(int count) {
发布于104天前
0 阅读
07 12
C语言数据结构表达解析使用堆栈

C语言数据结构表达解析使用堆栈

#includestdio.h #includestring.h //char stackchar stack[25]; int top = -1; void push(char item) {
发布于104天前
0 阅读
07 12
C语言数据结构队列

C语言数据结构队列

#include stdio.h#include string.h#include stdlib.h#include stdbool.h#define MAX 6
发布于104天前
0 阅读
07 12
C语言数据结构线性查找

C语言数据结构线性查找

#include stdio.h#define MAX 20// array of items on which linear search will be conducted.int intArray[MAX] = {1,2,3,4,6,7,9,11,12,14,15,16,17,19,33,34,43,45,55,66};
发布于104天前
0 阅读
07 12
C语言数据结构斐波纳契递归

C语言数据结构斐波纳契递归

#include stdio.hint factorial(int n) {//base caseif(n == 0) {return 1;} else {return n * factorial(n-1);
发布于104天前
0 阅读
07 12
C语言数据结构斐波纳契迭代

C语言数据结构斐波纳契迭代

#include stdio.hint factorial(int n) {//base caseif(n == 0) {return 1;} else {return n * factorial(n-1);
发布于104天前
0 阅读
07 12
C语言数据结构河内塔

C语言数据结构河内塔

#include stdio.h#include stdbool.h#define MAX 10int list[MAX] = {1,8,4,6,0,3,5,2,7,9};
发布于104天前
0 阅读
07 12
C语言数据结构插入操作

C语言数据结构插入操作

#include stdio.hmain() {int LA[] = {1,3,5,7,8};int item = 10, k = 3, n = 5;int i = 0, j = n;printf(The original array elements are :\\n);
发布于104天前
0 阅读
07 12
C语言数据结构在数组的开头插入

C语言数据结构在数组的开头插入

#include stdio.h#define MAX 5void main() {int array[MAX] = {2, 3, 4, 5};int N = 4;// number of elements in array
发布于104天前
0 阅读
07 12
C语言数据结构希尔排序

C语言数据结构希尔排序

#include stdio.h#include stdbool.h#define MAX 7int intArray[MAX] = {4,6,3,2,1,9,7};void printline(int count) {
发布于104天前
0 阅读
07 12
C语言拆分双向链表

C语言拆分双向链表

#include stdio.h#include stdlib.h#include stdio.h#include stdlib.hstruct node {
发布于104天前
0 阅读
07 12
C语言结合两个双向链表

C语言结合两个双向链表

#include stdio.h#include stdlib.hstruct node {int data;struct node *prev;struct node *next;
发布于104天前
0 阅读
07 12
C语言从双向链表中删除数据

C语言从双向链表中删除数据

#include stdio.h#include stdlib.hstruct node {int data;struct node *prev;struct node *next;
发布于104天前
0 阅读
07 12
C语言数据结构堆栈程序

C语言数据结构堆栈程序

#include stdio.hint MAXSIZE = 8;int stack[8];int top = -1;int isempty() {if(top == -1)return 1;
发布于104天前
0 阅读
首页上一页 6 7 8 9 10 11 12 13 14 15 16 下一页末页 共 34页679条

学习编程

Python教程 开始学习
学习Python

Python不仅是一种计算机程序设计语言、还是一种面向对象、解释型的计算机程序语言,汇集整理Pytho......

Go教程 开始学习
学习Go

Go(又称 Golang)是 Google 的 Robert Griesemer,Rob Pike 及 Ken Thompson 开发的一种静态强类型、编译型语言。......

Ruby教程 开始学习
学习Ruby

Ruby是一种纯粹的面向对象编程语言。它由日本的松本行弘(まつもとゆきひろ/Yukihiro Matsumoto)创建于......

C教程 开始学习
学习C

C语言是一门面向过程的、抽象化的通用程序设计语言,广泛应用于底层开发。C语言能以简易的方式编......

最新发布

  • 网站图片丢失或者获取失败时显示默认图片的办法 4小时前
  • PHP正则表达式匹配字符方法汇总 4小时前
  • Nib文件是什么?Nib文件打开方法 5小时前
  • iOS、Mac OS X系统中编程实现汉字转拼音的方法(超级简单) 5小时前
  • iOS7 毛玻璃特效代码 5小时前

图文推荐

文章热榜

1 说明指定字段宽度时scanf()的工作原理。

#include stdio.hint main(void){char name1[11], name2[11];int count;printf(Please enter 2 names.\\n);

2 使用函数验证输入

#include stdio.h#include stdbool.hlong get_long(void);bool isWrongInput(long begin, long end,long low, long high);

3 何时在scanf使用&

#include stdio.hint main(void){int age;float assets;char pet[30];// stringprintf(Enter your age, assets, and favorite pet.\\n);

4 scanf跳过前两个输入整数

#include stdio.hint main(void){int n;printf(Please enter three integers:\\n);scanf(%*d %*d %d, n);

5 使用基本数据类型,并输出它们的值,int,floa

#include stdio.hint main(void){intintegerVar = 100;floatfloatingVar = 123.79;doubledoubleVar = 1.23e+11;

关于我们

© 2023 素材狗 版权所有并保留所有权