Eternity_G
Eternity_G
全部文章
笔记
AtCoder/Codeforces(25)
c++(1)
CCF(25)
c语言(5)
java(1)
JAVA的自学之路(31)
LeetCode(5)
PTA(62)
switch(1)
《编程谜题》(4)
复变函数与积分变换(2)
头歌(15)
字符串(1)
指针(1)
数据库(4)
数据结构(36)
洛谷(12)
算法竞赛(12)
链表(2)
队列(1)
归档
标签
去牛客网
登录
/
注册
Eternity_G的博客
全部文章
/ 笔记
(共24篇)
2021-4-26【实现strcat函数】【实现strlen函数】【实现strcmp函数】
#include<iostream> using namespace std; void Strcat(char* current, const char* extra) { while (*current != '\0') { //把字符串1走完 ++curr...
2022-04-18
0
358
2021-5-22【考试中常见的典型程序设计题目】【】
一、基础知识: 1. 普通变量(整型、单精度实型、双精度实型、字符型)的定义、数组的定义、指针变量的定义、结构体变量的定义 2. 以上变量的输入输出方法。 二、考试中常见的典型程序设计题目 (一)顺序结构程序设计 1.按照给出的公式求三角形的面积、梯形面积,华氏温度转换为摄氏温度 #includ...
2022-04-18
0
282
2021-5-24【选择排序】【冒泡排序】【插入排序】【希尔排序】
#include<stdio.h> void swap(int a[],int i,int j); void insertion_sort(int a[],int n);//样本小可以用,很快 void selection_sort(int a[],int n);//不稳定 vo...
2022-04-18
0
253
2021-5-26【单链表】【结构体】【含注释】
#include<stdio.h> #include<stdlib.h> struct Node{ int data; struct Node *next;//结构体指针 }; struct Node* createlist()//创建链表 { ...
2022-04-18
0
283
2021-06-29【文件操作】
#include<stdio.h> #include<stdlib.h> #include<assert.h> struct Student { char name[20];//姓名 int age;//年龄 int score;//分数 }; ...
2022-04-18
0
252
2021-10-30【C指针】
C语言的灵魂:指针 指针是一个特殊的变量,它里面存储的数值被解释成为内存里的一个地址。 (1) int *ptr; (2) char *ptr; (3) int **ptr; (4) int (*ptr)[3]; (5) int *(*ptr)[4]; 1.指针的类型 从语法的角度看,你只...
2022-04-18
0
301
2021-10-31【结构体】
自定义的可用的数据类型 结构体 struct struct student{ int num; int scores; }stu1,stu2,stu3; student 结构体标签 num,scores 结构体中变量的定义 stu1,stu2,stu3 结构变量 定义在结构...
2022-04-18
0
241
2021-11-16
public class Rectangle { private Integer length; private Integer width; public void setDemo(Integer length, Integer width){ ...
2022-04-18
0
209
2021-12-23【C语言课程设计】【图书信息管理系统设计】
文章目录 1.设计任务 1.1 设计题目的描述 1.2 设计要求 2.设计方案说明 2.1 数据的存储结构 2.2函数之间的调用关系说明 2.3函数说明 3设计题目源代码清单 4 程序测试 ...
2022-04-18
0
1899
【Git基础教程】
2021-12-28 文章目录 2021-12-28 1.Git介绍 1.1版本控制 1.2开发中存在的问题 1.3 SVN版本控制 1.4 Git版本控制 2.G...
2022-04-18
0
315
首页
上一页
1
2
3
下一页
末页