- 博客(14)
- 收藏
- 关注
原创 链表——顺序插入
#include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; int main() { struct node *head,*p,*q,*t; int i,n,a; scanf("%d",&n); head=...
2019-04-01 22:50:55 583
原创 栈和队列的应用——纸牌游戏
#include <stdio.h> struct queue { int data[1000]; int head; int tail; } ; struct stack { int data[1000]; int top; }; int main() { struct queue q1,q2; struct stack s; int i,t; q1.head=1; q1....
2019-03-31 23:25:13 574
原创 栈——解密回文
#include <stdio.h> #include <stdlib.h> int main() { int a[101],s[101]; int i,len,top,mid,next ; gets(a); len=strlen(a); mid=len/2-1; top=0; for(i=0;i<=mid;i++) s[++top]=a[i];...
2019-03-30 13:02:21 156
原创 队列——解密号码
#include <stdio.h> struct queue { int data[101]; int head; int tail; }; int main() { struct queue q; int i; q.head=1; q.tail=1; for(i=1;i<=11;i++) { scanf("%d",&q.data[q.tail]);...
2019-03-30 13:01:12 171
翻译 马踏棋盘算法
#include <stdio.h> #include <time.h> #define x8 #define y8 int chess[x][y]; //找到(x,y)位置的下一个可走的位置 int nextxy(int *x,int *y,int count ) { switch(count ) { case 0; ...
2019-02-22 12:27:18 130
原创 线索二叉树
#include <stdio.h> #include <stdlib.h> typedef char ElenType //线索存储标记位 //link(0),表示指向左右孩子的指针 //Thread(1),表示指向前驱后继的线索 typedef raun (Link,Thread) PointerTag; typedef struct BiThr...
2019-01-27 15:44:02 109
原创 二叉树的建立及遍历
//二叉树的建立 #include<stdio.h> typedef char ClenType; typedef struct BiTNode { char data; struct BiTNode *lchild,*rchild; } BiTNode,*BiTree; //创建一棵二叉树 CreateBiTree(BiTree*T) { char c; ...
2019-01-17 23:06:40 112
原创 汉诺塔问题
#include<stdio.h > void move (int n,char x,char y,char z) //n为盘子数.将n个盘子从x借助y移到z { if(n==1){ printf("%c==>%c\n-,x,z"); } else { move (n-1,x,z,y); ...
2019-01-17 22:54:20 93
原创 八皇后问题
#include <stdio.h> int count =0; int notDanger(int row,int j ,(*chess)[8]) { int i,k,flag1=0,flag2=0,flag3=0,flag4=0,flag5=0; //判断列方向 for (i=0;i<8;i++) { if(*(*(ches...
2019-01-17 22:53:11 104
原创 链表
/*删除链表L中第i个元素*/ Statue ListDelets(StaticLinklist L,int i) { int j,k; if(i<1 ||i>Listlength(L) ) { return error ; } k=max_size-1; for(j=1;j<=i-1;j++) { k=L[k].cur; } j=L[k].cur; L...
2018-12-30 23:15:30 83
原创 AWT
package aaaaa; import java .awt.*; public class text2 { public static void main(String[] args) { Frame f=new Frame("我的窗体!") ; f.setSize(400,300); f....
2018-11-21 19:18:28 138
原创 Java个别关键字
package 自主练习; final class Animal{ } class Dog extends Animal { } public class final关键字修饰类 { public static void main(String[] args) { Dog dog =new Dog(); } } 在这...
2018-11-14 11:39:25 146
原创 java个别关键字的
package 自主练习; class Student{ static String schoolName; // 定义静态变量schoolName } public class static关键字静态变量 { public static void main...
2018-11-14 11:15:35 105
原创 JAVA----个别关键字
package 自主练习; class Student{ static String schoolName; // 定义静态变量schoolName } public class static关键字静态变量 { public static void main...
2018-11-13 23:11:38 201
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人