前端开发
编程语言
数据库
服务器
系统/运维
网络/安全
移动开发
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语言数据结构哈希表

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 阅读
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语言库宏va_start()

C语言库宏va_start()

#includestdarg.h#includestdio.hint sum(int, ...);int main(void) {printf(Sum of 10, 20 and 30 = %d\\n,sum(3, 10, 20, 30) );
发布于104天前
0 阅读
07 12
C语言库宏va_arg()

C语言库宏va_arg()

#include stdarg.h#include stdio.hint sum(int, ...);int main () {printf(Sum of 15 and 56 = %d\\n,sum(2, 15, 56) );
发布于104天前
0 阅读
首页上一页 44 45 46 47 48 49 50 51 52 53 54 下一页末页 共 72页1431条

学习编程

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 file对象转blob对象进行预览的实例代码

file对象转blob对象进行预览的实例代码: //获取到 file文件var reader = new FileReader();reader.readAsArrayBuffer(file);reader.onload = function (event) { let blob = new Blob([event.target.result], { type: file.type }); //{ type: file.type } 预览blob发现乱码可能是type不对 要获取file文件的

2 比较完善的数字格式化验证实例代码

在小程序端input为number类型的表单,调出的键盘只有数字且没有小数点和负号。显然并不符合要求。所以我们用text类型来自己判断 1,必须为数字 2,第一位不是小数点,且只能出现一个小数点 3,负号只能出现在第一位,且只能出现一次 4,如果

3 layui表格下拉选择、日期选择、文本输入框

一、下拉选择 改动三个地方:下拉选择模板、数据渲染、下拉选择监听填充数据 //表格{ title: '是否棚改房span class="titletips"*/span', field: 'sfpgf', align: 'center', width: 110, // edit: 'text', templet: function (d) { return 'select name="sfpgf" class="sel_xlk" lay-filter="sfpgf" l

4 php实现计数器的两种实例代码

两种php实现计数器的实例代码,一种是以文本形式,另外一种是以图形计数器形式。 1、文本计数器 ?php$countfile="/count.txt"; //设置保存数据的文件if (!file_exists($countfile)){//判断文件是否存在exec( "echo 0 $countfile");}$fp = fopen($countfile,"rw");$length=filesize($

5 PC端微信扫码支付成功之后自动跳转php代码

这篇文章主要为大家详细介绍了微信扫码支付成功之后自动跳转php版代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下 本文实例为大家分享了php微信扫码支付成功之后自动跳转的具体代码,供大家参考,具体内容如下 场景: PC端 微信

关于我们

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