Java用链表写图书管理_C语言链表实现图书管理系统

之前参照网上的资料用链表实现了图书管理系统,包括简单的增删改查功能以及借书还书功能,我是VC6.0下写的一个控制台程序,格式参照的网上的。在动手编码之前,你需要理清自己的思路。首先,需要确定图书馆里系统中主要有那几个对象,这里我写了学生对象和图书对象。不妨在纸上写出或画出它们主要包括哪些属性以及其可能的对应关系,这里根据不同人的要求会有所不同。清楚这些之后,就可以设计学生和图书的数据结构,比如这里我用的结构体存储其信息。然后就需要考虑,我想要哪些功能,除了基本的增删改查之外,我还想要哪些功能?比如借书、还书,我怎么表示这之间的关系?可以通过图书的属性来记录该书的状态,及是否被借走,谁借了。主要就是这个思路,图书的增删改查是通过链表实现的,当然也可以用数组实现,只不过那会浪费较多的空间。

// MyLibManSys.cpp : Defines the entry point for the console application.

//

#include "stdafx.h"

#include "iostream"

struct book{

int id;

char title[20];

char author[20];

double price;

char state[20];

int student_id;

char student_name[20];

struct book* next;

};

struct student{

int id;

char name[20];

char sex[10];

char borrow_book[30];

struct student* next;

};

void Print_Book(struct book *head_book);

void Print_Student(struct student *head_student);

struct book *Create_New_Book();/*创建新的图书库*/

struct student *Create_New_Student();/*创建新的学生库*/

struct book *Insert_Book(struct book *head_book,struct book *new_book);/*增加图书,逐个添加*/

//void Insert_Book(struct book *head_book,struct book *new_book);/*增加图书,逐个添加*/

//函数的参数是一个指针时,不要在函数体内部改变指针所指的地址,那样毫无作用,需要修改的只能是指针所指向的内容。即应把指针当作常量

struct student *Insert_Student(struct student *head_student,struct student *new_student);/*增加学生,逐个添加*/

struct book *Search_Book_ById(int id,struct book *head_book);

struct book *Search_Book_ByTitle(char *title,struct book *head_book);

struct book *Search_Book_ByPrice(double price_h,double price_l,struct book *head_book);

//bool Delete_Book(int id,book* head_book);

struct book* Delete_Book(int id,book* head_book);

struct student *Search_Student(int id,struct student *head_student);

struct student* Delete_Student(int id,student* head_student);

void Lent_Book(int id,int student_id,struct book *head_book,struct student *head_student);

void Back_Book(int id,int student_id,struct book *head_book,struct student *head_student);

int main()

{

struct book* head_book,*p_book;

struct student* head_student, *p_student;

int choice, f, id, student_id;

int m = 1;

char name[20],sex[10];

char title[20];

double price_h,price_l,price;

char author[20];

int size_book=sizeof(struct book);

int size_student=sizeof(struct student);

printf("\n欢迎您第一次进入图书管理系统!\n\n");

printf("----->[向导]----->[新建图书库]\n\n");

printf("注意:当输入图书编号为0时,进入下一步.\n\n");

head_book=Create_New_Book();

system("cls");

//Print_Book(head_book);

printf("\n欢迎您第一次进入图书管理系统!\n\n");

printf("----->[向导]----->[新建会员库]\n\n");

printf("注意:当输入会员学号为0时,进入主菜单.\n\n");

head_student=Create_New_Student();

system("cls");

//Print_Student(head_student);

do{

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("\n");

printf("\t\t\t[1]:借书办理\t");printf(" [6]:还书办理\n");

printf("\n");

printf("\t\t\t[2]:查询图书\t");printf(" [7]:查询学生\n");

printf("\t\t\t[3]:添加图书\t");printf(" [8]:添加学生\n");

printf("\t\t\t[4]:删除图书\t");printf(" [9]:删除学生\n");

printf("\t\t\t[5]:遍历图书\t");printf("[10]:遍历学生\n\n");

printf("\t\t\t〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓\n\n");

printf("\t\t\t0:退出\n\n");

printf("请选择<0~10>:");

scanf("%d",&choice);

switch(choice){

case 0:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("\n谢谢您的使用!\n\n");

break;

case 1:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("输入借出图书编号:\n");

scanf("%d",&id);

printf("输入借入学生学号:\n");

scanf("%d",&student_id);

Lent_Book(id,student_id,head_book,head_student);

break;

case 2:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("1.按编号查询\n\n");

printf("2.按名称查询\n\n");

printf("3.按价格区间查询\n\n");

printf("0.返回主菜单\n\n");

printf("请选择:");

scanf("%d",&f);

if(f==1){

printf("请输入查询图书编号:");

scanf("%d",&id);

printf("相关信息如下:\n\n");

head_book=Search_Book_ById(id,head_book);

break;

}

else if(f==2){

getchar();

printf("请输入查询图书名称:");

gets(title);

printf("相关信息如下:\n\n");

head_book=Search_Book_ByTitle(title,head_book);

break;

}

else if(f==3){

printf("请输入最高价格:");

scanf("%lf",&price_h);

printf("请输入最低价格:");

scanf("%lf",&price_l);

printf("相关信息如下:\n\n");

head_book=Search_Book_ByPrice(price_h,price_l,head_book);

break;

}

else if(f==0){

break;

}

break;

case 3:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("请输入图书编号:");

scanf("%d",&id);

printf("请输入图书名称:");

scanf("%s",title);

printf("请输入作者名字:");

scanf("%s",author);

printf("请输入单价:");

scanf("%lf",&price);

printf("\n");

struct book *ptr_b;

for(ptr_b=head_book;ptr_b;ptr_b=ptr_b->next)

{

if(ptr_b->id==id)

{

printf("此编号图书已存在\n");

m=0;

break;

}

}

if(m){

p_book=(struct book *)malloc(size_book);

strcpy(p_book->title,title);

p_book->id=id;

p_book->price=price;

p_book->student_id=-1;

strcpy(p_book->author,author);

strcpy(p_book->state,"存在");

strcpy(p_book->student_name,"待定");

// head_book=Insert_Book(head_book,p_book);

Insert_Book(head_book,p_book);

printf("\n添加图书成功!\n\n");

}

break;

case 4:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("输入删除图书编号:\n");

scanf("%d",&id);

/*if(Delete_Book(id,head_book)){

printf("\n删除图书成功!\n\n");

}else{

printf("删除失败");

}*/

head_book = Delete_Book(id,head_book);

break;

case 5:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

Print_Book(head_book);

break;

case 6:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("输入归还图书编号:\n");

scanf("%d",&id);

printf("输入归还学生学号:\n");

scanf("%d",&student_id);

Back_Book(id,student_id,head_book,head_student);

break;

case 7:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("请输入查询学生学号:");

scanf("%d",&id);

printf("相关信息如下:\n\n");

head_student=Search_Student(id,head_student);

break;

case 8:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("请输入学生编号:");

scanf("%d",&id);

printf("请输入学生姓名:");

scanf("%s",name);

printf("请输入学生性别:");

scanf("%s",sex);

printf("\n");

struct student *ptr_s;

for(ptr_s=head_student;ptr_s;ptr_s=ptr_s->next)

{

if(ptr_s->id==id)

{

printf("此学号学生已存在\n");

m=0;

break;

}

}

if(m){

p_student=(struct student *)malloc(size_student);

p_student->id=id;

strcpy(p_student->name,name);

strcpy(p_student->sex,sex);

strcpy(p_student->borrow_book,"无");

head_student=Insert_Student(head_student,p_student);

printf("\n添加学生成功!\n\n");

}

break;

case 9:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

printf("输入删除学生学号:\n");

scanf("%d",&id);

head_student = Delete_Student(id,head_student);

break;

case 10:

system("cls");

printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");

Print_Student(head_student);

}

}while(choice!=0);

return 0;

}

struct book *Create_New_Book(){

struct book *head_book,*p_book;

int id, tag;

double price;

char title[20],author[20];

int size_book=sizeof(struct book);

head_book=NULL;

printf("请输入图书编号:");

scanf("%d",&id);

printf("请输入图书名称:");

scanf("%s",title);

printf("请输入作者名字:");

scanf("%s",author);

printf("请输入单价:");

scanf("%lf",&price);

printf("\n");

while(true){

p_book=(struct book *)malloc(size_book);

strcpy(p_book->title,title);

p_book->id=id;

p_book->price=price;

p_book->student_id=-1;

strcpy(p_book->author,author);

strcpy(p_book->state,"存在");

strcpy(p_book->student_name,"待定");

head_book=Insert_Book(head_book,p_book);

printf("是否继续?继续输入1,退出按任意键\n");

scanf("%d",&tag);

if(tag!=1){

break;

}

printf("请输入图书编号:");

scanf("%d",&id);

printf("请输入图书名称:");

scanf("%s",title);

printf("请输入作者名字:");

scanf("%s",author);

printf("请输入单价:");

scanf("%lf",&price);

printf("\n");

}

return head_book;

}

struct student *Create_New_Student(){

struct student *head_student,*p_student;

int id, tag;

char sex[10];

char name[20];

int size_student=sizeof(struct student);

head_student=NULL;

printf("请输入学生编号:");

scanf("%d",&id);

printf("请输入学生姓名:");

scanf("%s",name);

printf("请输入学生性别:");

scanf("%s",sex);

printf("\n");

while(true){

p_student=(struct student *)malloc(size_student);

p_student->id=id;

strcpy(p_student->name,name);

strcpy(p_student->sex,sex);

strcpy(p_student->borrow_book,"无");

head_student=Insert_Student(head_student,p_student);

printf("是否继续?继续输入1,退出按任意键\n");

scanf("%d",&tag);

if(tag!=1){

break;

}

printf("请输入学生编号:");

scanf("%d",&id);

printf("请输入学生姓名:");

scanf("%s",name);

printf("请输入学生性别:");

scanf("%s",sex);

printf("\n");

}

return head_student;

}

struct book *Insert_Book(struct book *head_book,struct book *new_book){

struct book *p,*q;

p=q=head_book;

if(head_book==NULL){ //单向链表为空的情况

head_book=new_book;

new_book->next = NULL;

}else{

while((new_book->id>p->id)&&(p->next!=NULL)){

q = p;

p = p->next;

}

if(new_book->id<=p->id){

new_book->next=p;

if(head_book==p)

head_book=new_book;

else

q->next = new_book;

}else{

p->next=new_book;

new_book->next=NULL;

}

}

return head_book;

};

struct student *Insert_Student(struct student *head_student,struct student *new_student){

struct student *p,*q;

p=q=head_student;

if(head_student==NULL){ //单向链表为空的情况

head_student=new_student;

new_student->next = NULL;

}else{

while((new_student->id>p->id)&&(p->next!=NULL)){

q = p;

p = p->next;

}

if(new_student->id<=p->id){

new_student->next=p;

if(head_student==p)

head_student=new_student;

else

q->next = new_student;

}else{

p->next=new_student;

new_student->next=NULL;

}

}

return head_student;

}

struct book *Search_Book_ById(int id,struct book *head_book){

struct book *ptr_book = head_book;

int flag=0;

while(ptr_book!=NULL)

{

if(ptr_book->id==id){

printf("图书编号:%d\n",ptr_book->id);

printf("图书名称:%s\n",ptr_book->title);

printf("图书单价:%.2lf\n",ptr_book->price);

printf("图书作者:%s\n",ptr_book->author);

printf("存在状态:%s\n",ptr_book->state);

printf("借书人姓名:%s\n",ptr_book->student_name);

printf("学号:%d\n",ptr_book->student_id);

printf("\n");

flag++;

}

if(flag>0)

{

break;

}

ptr_book = ptr_book->next;

}

if(flag==0){

printf("暂无此图书信息!\n\n");

}

return head_book;

};

struct book *Search_Book_ByTitle(char *title,struct book *head_book){

struct book *ptr_book = head_book;

int flag=0;

while(ptr_book!=NULL)

{

if(strcmp(ptr_book->title,title)==0){

printf("图书编号:%d\n",ptr_book->id);

printf("图书名称:%s\n",ptr_book->title);

printf("图书单价:%.2lf\n",ptr_book->price);

printf("图书作者:%s\n",ptr_book->author);

printf("存在状态:%s\n",ptr_book->state);

printf("借书人姓名:%s\n",ptr_book->student_name);

printf("学号:%d\n",ptr_book->student_id);

printf("\n");

flag++;

}

if(flag>0)

{

break;

}

ptr_book = ptr_book->next;

}

if(flag==0){

printf("暂无此图书信息!\n\n");

}

return head_book;

};

struct book *Search_Book_ByPrice(double price_h,double price_l,struct book *head_book){

struct book *ptr_book = head_book;

int flag=0;

while(ptr_book!=NULL)

{

if(ptr_book->price>=price_l&&ptr_book->price<=price_h){

printf("图书编号:%d\n",ptr_book->id);

printf("图书名称:%s\n",ptr_book->title);

printf("图书单价:%.2lf\n",ptr_book->price);

printf("图书作者:%s\n",ptr_book->author);

printf("存在状态:%s\n",ptr_book->state);

printf("借书人姓名:%s\n",ptr_book->student_name);

printf("学号:%d\n",ptr_book->student_id);

printf("\n");

flag++;

}

ptr_book = ptr_book->next;

}

if(flag==0){

printf("暂无此图书信息!\n\n");

}

return head_book;

}

/*bool Delete_Book(int id,book* head_book){

bool flag=true;

struct book *p,*q;

p=q=head_book;

if(p->id==id&&p->next==NULL){

head_book=NULL;

}

while(p->id!=id&&p->next!=NULL){

q=p;

p=p->next;

}

if(p->id==id){

if(p==head_book){

head_book=p->next;

}else{

q->next=p->next;

}

free(p);

}else{

flag=false;

printf("找不到该书");

}

return flag;

};*/

struct book* Delete_Book(int id,book* head_book){

bool flag=true;

struct book *p,*q;

p=q=head_book;

while(p->id!=id&&p->next!=NULL){

q=p;

p=p->next;

}

if(p->id==id){

if(p==head_book){

head_book=p->next;

}else{

q->next=p->next;

}

free(p);

printf("删除成功!\n");

}else{

flag=false;

printf("找不到该书");

}

return head_book;

};

struct student* Delete_Student(int id,student* head_student){

bool flag=true;

struct student *p,*q;

p=q=head_student;

while(p->id!=id&&p->next!=NULL){

q=p;

p=p->next;

}

if(p->id==id){

if(p==head_student){

head_student=p->next;

}else{

q->next=p->next;

}

free(p);

printf("删除成功!\n");

}else{

flag=false;

printf("找不到该学生");

}

return head_student;

};

struct student *Search_Student(int id,struct student *head_student){

struct student *ptr_student = head_student;

int flag=0;

while(ptr_student!=NULL)

{

if(ptr_student->id==id){

printf("学号:%d\n",ptr_student->id);

printf("姓名:%s\n",ptr_student->name);

printf("性别:%s\n",ptr_student->sex);

printf("借书:%s\n",ptr_student->borrow_book);

printf("\n");

flag++;

}

if(flag>0)

{

break;

}

ptr_student = ptr_student->next;

}

if(flag==0){

printf("暂无此学生信息!\n\n");

}

return head_student;

};

void Lent_Book(int id,int student_id,struct book *head_book,struct student *head_student){

struct book* p=head_book;

struct student* q=head_student;

if(p==NULL||q==NULL){

printf("书本或学生不存在\n");

return;

}

while(p!=NULL&&q!=NULL){

if(p->id!=id){

p=p->next;

}

if(q->id!=student_id){

q=q->next;

}

if(p->id==id&&q->id==student_id){

break;

}

}

if(p==NULL||q==NULL){

printf("书本或学生不存在\n");

return;

}else{

if(strcmp(p->state,"存在")!=0){

printf("书已借出!抱歉!");

return;

}else{

p->student_id=student_id;

strcpy(p->student_name,q->name);

strcpy(q->borrow_book,p->title);

strcpy(p->state,"已借出");

printf("已成功借出!/n");

}

}

};

void Back_Book(int id,int student_id,struct book *head_book,struct student *head_student){

struct book* p=head_book;

struct student* q=head_student;

if(p==NULL||q==NULL){

printf("书本或学生不存在\n");

return;

}

while(p!=NULL&&q!=NULL){

if(p->id!=id){

p=p->next;

}

if(q->id!=student_id){

q=q->next;

}

if(p->id==id&&q->id==student_id){

break;

}

}

if(p==NULL||q==NULL){

printf("书本或学生不存在\n");

return;

}else{

if(strcmp(p->state,"存在")==0){

printf("书未借出!抱歉!");

return;

}else{

p->student_id=-1;

strcpy(p->student_name,"待定");

strcpy(q->borrow_book,"无");

strcpy(p->state,"存在");

printf("已成功归还!/n");

}

}

};

void Print_Book(struct book *head_book){

struct book* p=head_book;

if(p==NULL){

printf("\n无记录\n\n");

return;

}

printf("\n图书编号\t图书名称\t图书单价\t图书作者\n\n");

while (p!=NULL)

{

printf("%d\t\t%s\t\t%.2lf\t\t%s\n\n",p->id,p->title,p->price,p->author);

p = p->next;

}

}

void Print_Student(struct student *head_student){

struct student* p=head_student;

if(p==NULL){

printf("\n无记录\n\n");

return;

}

printf("\n学生姓名\t学生性别\t学生学号\n\n");

while (p!=NULL)

{

printf("%s\t\t%s\t\t%d\n",p->name,p->sex,p->id);

p = p->next;

}

}

代码可以直接运行,这里我都是在控制台上直接显示的,如果想从文件读取和向文件写入学生和图书信息,只需要把相应的printf和scanf部分改为文件操作。这个是很久之前写的,详细的函数以及功能讲解这里就不介绍了。欢迎大家讨论和指导。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/475896.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Kaggle】Intermediate Machine Learning(缺失值+文字特征处理)

文章目录1. Introduction2. Missing Values 缺失值处理3. Categorical Variables 文字变量处理from https://www.kaggle.com/learn/intermediate-machine-learning下一篇 &#xff1a;【Kaggle】Intermediate Machine Learning&#xff08;管道交叉验证&#xff09; 1. Intro…

VB6调用API打开目标文件所在文件夹且选中目标文件

Option Explicit 模块名称: mOpenFolderAndSetFileFocus 作者: 唐细刚 时间: 2010-08-22 功能: VB6调用API打开目标文件所在文件夹且选中目标文件 注&#xff1a; 由于调用 Explorer.exe /select 方式会使系统产生多余的 Explorer.exe 进程 所以还是API来实现较好…

python 保存文件 吃内存_孤荷凌寒自学python第三十七天python的文件与内存变量之间的序列化与反序列化...

孤荷凌寒自学python第三十七天python的文件与内存变量之间的序列化与反序列化(完整学习过程屏幕记录视频地址在文末&#xff0c;手写笔记在文末)一、什么是序列化与反序列化序列化是指将内存中的数据进行指定规则的格式梳理&#xff0c;使之方便按一定格式保存到文件中。我的理…

【Kaggle】Intermediate Machine Learning(管道+交叉验证)

文章目录4. Pipelines 管道5. Cross-Validation 交叉验证上一篇&#xff1a;【Kaggle】Intermediate Machine Learning&#xff08;缺失值文字特征处理&#xff09; 下一篇&#xff1a;【Kaggle】Intermediate Machine Learning&#xff08;XGBoost Data Leakage&#xff09; …

ASP.NET2.0导出Word文档(C#导出DOC)

在网络上看到很多关于ASP.NET导出DOC文档的例子&#xff0c;有的干脆就直接将html页面不做任何处理直接导出为DOC文件&#xff0c;但是那样会有很多错误&#xff0c;例如将某些控件显示为图片。我还曾经见过微软为中国某个大公司制作的一个XX系统&#xff0c;导出的DOC文件实际…

java todo error_java.sql.SQLException: sql injection violation, syntax error: TODO UNIQUE unique

wenshao 你好&#xff0c;想跟你请教个问题&#xff1a;我是在用activiti工作流的时候 初始化生成流程表产生了下面的问题工作流引擎代码&#xff1a;ProcessEngineConfiguration config ProcessEngineConfiguration.createStandaloneProcessEngineConfiguration();config.se…

ASP VBScript 函数速查表

VBScript函数 功能说明 例子 Abs &#xff08;数值&#xff09;绝对值。一个数字的绝对值是它的正值。空字符串 (null) 的绝对值&#xff0c;也是空字符串。未初始化的变数&#xff0c;其绝对为 0例子&#xff1a;ABS(-2000) 结果&#xff1a;2000Array &#xff08;以逗点分…

LeetCode 201. 数字范围按位与(位运算)

文章目录1. 题目2. 解题2.1 按位查找02.2 两数直接都往右移动&#xff0c;直到相等1. 题目 给定范围 [m, n]&#xff0c;其中 0 < m < n < 2147483647&#xff0c;返回此范围内所有数字的按位与&#xff08;包含 m, n 两端点&#xff09;。 示例 1: 输入: [5,7] 输…

编php矩阵求和,PHP二维数组如何求和?

PHP二维数组求和的方法&#xff1a;1、使用array_sum和array_map函数求和1)、PHP7.2以下可用<?php $arr array(0>array(id>1,tol>10),1>array(id>3,tol>12),2>array(id>8,tol>5));//输出tol值的和echo array_sum(array_map(create_function($v…

LeetCode 1311. 获取你好友已观看的视频(BFS+哈希map+vector排序)

1. 题目 有 n 个人&#xff0c;每个人都有一个 0 到 n-1 的唯一 id 。 给你数组 watchedVideos 和 friends &#xff0c;其中 watchedVideos[i] 和 friends[i] 分别表示 id i 的人观看过的视频列表和他的好友列表。 Level 1 的视频包含所有你好友观看过的视频&#xff0c; …

发布ASP.NET程序至IIS7

以前一直和IIS5打交道&#xff0c;后来系统升级到WIN7,自然的就用上了IIS7了&#xff0c;不过因为对IIS7服务器没有系统的了解&#xff0c;所以在自己机子上测试发布网站时&#xff0c;总是遇到各种各样的问题&#xff0c;当时就放弃了&#xff0c;准备有时间再研究的&#xff…

php请求来源,php验证请求页面来源

php教程验证请求页面来源if( $_server[http_x_requested_with] xmlhttprequest ) {echo ajax;} else {echo normal;}jquery内部实现ajax的时候&#xff0c;已经加入了标识jquery源码中是这样的&#xff1a;xhr.setrequestheader("x-requested-with", "xmlhttpr…

LeetCode 1319. 连通网络的操作次数(BFS/DFS/并查集)

文章目录1. 题目2. 解题2.1 BFS2.2 DFS2.3 并查集1. 题目 用以太网线缆将 n 台计算机连接成一个网络&#xff0c;计算机的编号从 0 到 n-1。 线缆用 connections 表示&#xff0c;其中 connections[i] [a, b] 连接了计算机 a 和 b。 网络中的任何一台计算机都可以通过网络直…

1D機身調焦方法

原文作者&#xff1a;Kent 原文地址&#xff1a;http://www.ldsclub.net/forum/viewthread.php?tid21513&extrapage%3D1&page1另附大兔子調焦心得&#xff1a;http://www.ldsclub.net/forum/viewthread.php?tid28268&extrapage%3D1 需要1.27規格的6角手柄本次轉文…

kdevelop php,KDevelop 5.2开放源代码IDE发布,改进了C ++,PHP和Python支持

KDevelop 5.2近半年的发布&#xff0c;是一个主要的发行版&#xff0c;它在前面版本KDevelop 5.1中实现的Analyzer菜单条目中引入了更多的分析器插件。这些包括Heaprack&#xff0c;一个用C / C 编写的Linux应用程序的堆内存分析器和Cppcheck(一种流行的C 编程语言静态分析器)&…

LeetCode 187. 重复的DNA序列(哈希/位运算)

1. 题目 所有 DNA 都由一系列缩写为 A&#xff0c;C&#xff0c;G 和 T 的核苷酸组成&#xff0c;例如&#xff1a;“ACGAATTCCG”。 在研究 DNA 时&#xff0c;识别 DNA 中的重复序列有时会对研究非常有帮助。 编写一个函数来查找 DNA 分子中所有出现超过一次的 10 个字母长…

System.Net.Cookie

Does anyone know if it is possible to convert a System.Net.Cookie to a System.Web.HttpCookie ? What is the difference exactly? What Im trying to do is simulate a pseudo-autologin feature on my site into another website. So for example, my code does an Ht…

java获取api接口新浪数据,新浪短网址API接口的获取以及API接口的调用文档分享...

我们可能会收到类似于这样的短信&#xff0c;发现其中的链接并不是常规的网址链接&#xff0c;而是个短小精悍的短链接&#xff0c;产品中经常需要这样的需求&#xff0c;如果在给用户下发的短信中是一个很长的连接&#xff0c;用户体验肯定很差&#xff0c;因此我们需要实现长…

LeetCode 223. 矩形面积

1. 题目 在二维平面上计算出两个由直线构成的矩形重叠后形成的总面积。 每个矩形由其左下顶点和右上顶点坐标表示&#xff0c;如图所示。 示例: 输入: -3, 0, 3, 4, 0, -1, 9, 2 输出: 45 说明: 假设矩形面积不会超出 int 的范围。来源&#xff1a;力扣&#xff08;LeetCode&…

exe程序的启动过程

学习windows 编程从mfc角度来说可分为两部分那就是WinMain函数以前的&#xff0c;和WinMain函数以后的。前者涉及很多windows操作系统内部的知识&#xff0c;后者么看mfc源码就可以了。虽然大多数程序不需要你了解太多关于os加载应用程序这方面的知识&#xff0c;但我认为能较深…