自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 hello的一生

摘 要 在该论文中我将探讨hello程序如何在linux系统下实现从程序到机器上显示过程。通过linux上的gcc调试和课本上的知识对过程中的每一个步骤进行详细的解释与分析。并且从中寻找自己尚不了解的部分,及时补充该部分知识。使得自己对于计算机系统和linux有更深一步的理解。 关键词:Linux ;hello ;进程 ;代码 ;转化 ;地址 ; (摘要0分,缺失-1分,根据内容精彩称都酌情加...

2018-12-31 17:07:28 352

原创 c#bst查找

using System; using 所以; using System.Collections.Generic; //想用list必须有他!!! /*1. 设计BST 的左右链存储结构,并实现BST插入(建立)、删除、查找和排序算法。 2. 实现折半查找算法。 3. 实验比较:设计并产生实验测试数据,考察比较两种查找方法的时间性能,并与理论结果进行比较。以下具体做法可作为参考: (1) 第1组测...

2018-12-13 17:08:50 337

原创 c#bst树,普通树

using System; using System.Collections.Generic; //System.Collections.Generic 命名空间包含定义泛型集合的接口和类, //用户可以使用泛型集合来创建强类型集合, //这种集合能提供比非泛型强类型集合更好的类型安全性和性能。 namespace 所以 { class Tree { public...

2018-12-13 15:05:57 258

原创 c#堆

using System; using System.Collections.Generic; //System.Collections.Generic 命名空间包含定义泛型集合的接口和类, //用户可以使用泛型集合来创建强类型集合, //这种集合能提供比非泛型强类型集合更好的类型安全性和性能。 namespace 所以 { class Tree { pub...

2018-12-12 19:39:19 206

原创 c排序

#include <stdio.h> #include <stdlib.h> //该程序可以输入任意个float型浮点数,最多100个,输入end结束输入 int main() { float a[100]; float b[100]; int i; float aa; int flag; int h; int j...

2018-12-12 19:36:55 106

原创 c最垃圾的拼接

#include<stdio.h> #include<string.h> //该程序必须涉及四个人的比赛哦!!! //如果想增加参与比赛的人数请自行在代码中进行修改 int main() { int i; int a[6]; int j; int tmp; int k; int p; printf("请输入单循环比赛的每...

2018-12-12 18:42:07 81

原创 c++语言图

#include <iostream> #include <stdio.h> #include<Windows.h> #include<stack> #include<queue> using namespace std; #define NumVertices 10 int visited

2018-12-12 17:58:36 147

原创 c链表操作

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> int shangpinshu; //我把提货分成了两种,完全提光的直接删除链表,不完全提光的修改一下就好了 //我在208行的main函数中对输入是否合法进行了检验,附加功能,菜单栏输入是否...

2018-12-12 17:23:43 127

原创 c语言中缀表达式转化后缀表达式优化final

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> //附加功能: //附加功能1:附加了%取余数的操作!!! //附加功能2:附加了求对数ln的功能!!! //附加功能3:附加了取绝对值操作!!! //别忘了写程序之前写个伪代码分析

2018-12-12 17:20:48 146

原创 C语言中缀表达式转化为后缀表达式

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> //别靠空想!!!及其浪费时间!!!多谢谢伪代码分析一下!!! //后缀表示法计算时候的思路!!!先把元素推到栈中,每碰到一个 char stack[50]; char output[50];...

2018-12-12 17:18:51 1902

原创 c++迷宫

c++迷宫 #include <iostream> #include <string.h> #include <stack> #include <queue> #include <algorithm> #include <time.h> using namespace std; //若随机生成的迷宫无解则程序会卡住。。。 in...

2018-12-12 16:55:30 1508

原创 c#

c#命令行下的日记本和日程规划(计划任务并删除)(闲来无事写着玩练习c#勿扰喷) 代码如下 using System; using heart; namespace cjgf1 { class Program { static void Main(string[] args) { int i; string w1; Console.Title = "Zing's gf"; ...

2018-12-02 23:49:01 134

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除