上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页
摘要: . 阅读全文
posted @ 2023-07-18 17:42 秋渡晚枫 阅读(9) 评论(0) 推荐(0)
摘要: 3 阅读全文
posted @ 2023-07-11 20:36 秋渡晚枫 阅读(8) 评论(0) 推荐(0)
摘要: .这可以说是正式暑期的第一周了,我刚回到家,也算是比较自由的时候,但是我并不打算对编程放松警惕。 在这第一周里,我首先在B站上寻找了一些关于Java编程的教学视频,以巩固我上学期学习JavaWeb的知识 阅读全文
posted @ 2023-06-30 14:09 秋渡晚枫 阅读(8) 评论(0) 推荐(0)
摘要: 总结 阅读全文
posted @ 2023-06-29 20:10 秋渡晚枫 阅读(10) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python# -*- coding:utf-8 -*- import tkinter # 创建主窗口win = tkinter.Tk()# 设置标题win.title("yudanqu")# 设置大小和位置win.geometry("400x400+200+50") 阅读全文
posted @ 2023-06-23 14:34 秋渡晚枫 阅读(15) 评论(0) 推荐(0)
摘要: 完成了算法与数据结构的第一阶段,实现了prime(普里姆算法)后序遍历生成二叉树。 阅读全文
posted @ 2023-06-22 11:13 秋渡晚枫 阅读(14) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<stdlib.h>typedef int KeyType;typedef struct { KeyType *elem; /*elem[0]一般作哨兵或缓冲区*/ int Length; }SqList;void CreatSqList(SqLis 阅读全文
posted @ 2023-06-21 14:08 秋渡晚枫 阅读(17) 评论(0) 推荐(0)
摘要: void ShellInsert(SqList L,int gap){ for (int i=gap;i<L.Length;++i){for(int j=i+gap;j<L.Length+1;j+=gap){if (L.elem[j]<L.elem[j-gap]){int temp =L.elem[ 阅读全文
posted @ 2023-06-20 13:54 秋渡晚枫 阅读(10) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include<stdlib.h>typedef struct node *AVLTree;struct node{ int Data; AVLTree Left; AVLTree Right;};int High(AVLTree T){ if(!T) retu 阅读全文
posted @ 2023-06-19 14:42 秋渡晚枫 阅读(10) 评论(0) 推荐(0)
摘要: jmu-ds-实现KMP #include <stdio.h>#include<string.h>const int MAX_LEN=20010;void get_next(char str[],int len,int next[]){ int i=0,j=0; next[0]=-1; for(i= 阅读全文
posted @ 2023-06-18 10:29 秋渡晚枫 阅读(46) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页