- 博客(4)
- 收藏
- 关注
原创 css3动画-箭头浮动
实现网页下方常见下滑提示的箭头浮动 如图: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"&
2021-08-07 16:24:27
463
原创 css3写五星红旗
文章借鉴于:html五星红旗写法,html+css生成五星红旗. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-s
2021-08-07 16:20:24
717
原创 队列-链表存储结构
队列-链表存储结构构建队列入队出队完整代码 构建队列 template<class datatype> LinkQueue<datatype>::LinkQueue(){ front=new Node<datatype>; front->next=NULL; rear=front; length=0; } template<class datatype> LinkQueue<datatype>::~LinkQueue(){ whi
2021-03-16 13:15:35
153
原创 队列-数组存储结构
完整代码: #include<iostream> #include<stdlib.h> using namespace std; const int queuesize=100; template<class datatype> class cirqueue{ private: datatype *data; int front; int rear; int Msize; int num; public: cirqueue(); cirq
2021-03-16 12:52:46
174
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人