2022年8月14日

摘要: #include<iostream> using namespace std; int main() { int m=0; const int n=2;//必须初始化其n不可修改 如像常量一样 // n=3;错误 const int *ptr1 = &m; int a=2; ptr1=&a; // 阅读全文
posted @ 2022-08-14 22:39 qwwqsa 阅读(13) 评论(0) 推荐(0) 编辑

2022年8月11日

摘要: #include<iostream>#include<stack>#include<vector>#include<stdio.h>#include<stdlib.h>using namespace std;//二叉树节点结构 struct TreeNode{ int val; TreeNode * 阅读全文
posted @ 2022-08-11 22:07 qwwqsa 阅读(19) 评论(0) 推荐(0) 编辑

2022年8月9日

摘要: show databasescreate database if not exists tradeuse trade create table if not exists store(Sno varchar(20) not null primary key ,Spass varchar(20) ,S 阅读全文
posted @ 2022-08-09 22:55 qwwqsa 阅读(228) 评论(0) 推荐(0) 编辑

2022年8月8日

摘要: 栈与队列的转换 队列转换为栈 一个队列队列通过元素循环放置将前面的元素放在后面,将最后一个元素移到最前面弹出,循环往返,不断弹出元素。 #include<iostream> #include<queue> using namespace std; class MyStack { public : q 阅读全文
posted @ 2022-08-08 21:22 qwwqsa 阅读(15) 评论(0) 推荐(0) 编辑

2022年7月10日

摘要: #include<iostream> using namespace std; #include<string> //创建通讯录存储最多的人数 #define MAX 1000 //创建联系人结构体 struct Person { string name; int sex; int age; int 阅读全文
posted @ 2022-07-10 23:20 qwwqsa 阅读(114) 评论(0) 推荐(0) 编辑

2022年4月29日

摘要: #创建一个登录界面import tkinter as tk #设置界面from tkinter import messagebox #设置提示栏import pickle #由于读写数据window=tk.Tk()window.title("welome")#窗口题目window.geometry( 阅读全文
posted @ 2022-04-29 21:46 qwwqsa 阅读(748) 评论(0) 推荐(0) 编辑