• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Andromeda_Galaxy
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理
1 2 3 4 5 ··· 10 下一页

2020年10月20日

Android 学习 六大基础布局
摘要: 基础知识 android:layout_width 和 android:layout_height 是布局基础属性 值有 match_parent(和父组件长度一样) 和 wrap_content(根据自生内容要分配长度) android:layout_width="match_parent" an 阅读全文
posted @ 2020-10-20 16:49 Andromeda_Galaxy 阅读(112) 评论(0) 推荐(0)
 
 

2020年5月27日

verilog语言入门教程
摘要: 转自https://www.cnblogs.com/jian-jia/archive/2019/11/24/11924371.html module a(b, c, d,...z);//module: 模块头 a:模块名 (b,c,d,...z):端口列表 input b;//输入声明 input 阅读全文
posted @ 2020-05-27 23:48 Andromeda_Galaxy 阅读(3086) 评论(0) 推荐(0)
 
 

2019年10月15日

计算几何题目总结 (只保证模板正确 代码过题)
摘要: 凸包 poj 1113 Graham Scan 算法 极角排序+栈模拟 //#include<bits/stdc++.h> #include <iostream> #include <stdio.h> #include <string.h> #include <algorithm> #include 阅读全文
posted @ 2019-10-15 10:33 Andromeda_Galaxy 阅读(242) 评论(0) 推荐(0)
 
 

2019年10月5日

线代 可逆矩阵 行列式 伴随矩阵
摘要: #include<bits/stdc++.h> #define ll long long #define LL long long using namespace std; const int maxn=210; const int mod=1e9+7; ll a[maxn*2][maxn*2]; ll b[maxn*2][maxn*2]; int n; int cet(){ ll ans=1,s 阅读全文
posted @ 2019-10-05 14:16 Andromeda_Galaxy 阅读(433) 评论(0) 推荐(0)
 
 

2019年9月25日

题目集合 母函数(生成函数)(普通型型母函数 指数型母函数) (涉及知识点 背包 多项式乘法 排列组合 泰勒展开)
摘要: 总结的不错的博客 https://www.cnblogs.com/icodefive/p/4578530.html 重要公式 图片来源 https://blog.csdn.net/qq_41357771/article/details/83449481 来源于百度 (一)普通型母函数 1. 经典问题 阅读全文
posted @ 2019-09-25 15:35 Andromeda_Galaxy 阅读(396) 评论(0) 推荐(0)
 
 

2019年9月13日

字符串题目
摘要: 回文自动机 马拉车 后缀自动机 后缀数组 AC自动机 EXKMP KMP 字典树 字符串匹配shiftand算法 字符串哈希 手写哈希 #include<bits/stdc++.h> using namespace std; struct Hash { static const int MOD = 阅读全文
posted @ 2019-09-13 16:54 Andromeda_Galaxy 阅读(158) 评论(0) 推荐(0)
 
 

2019年9月5日

dfs序 线段树 dfs序列 主席树
摘要: 并查集 #include<stdio.h> int stt[10005]; void sset(int x) { for(int i=1;i<=x;i++) stt[i]=i; } int ffind(int x) { if(x==stt[x]) return x; else return stt[ 阅读全文
posted @ 2019-09-05 19:55 Andromeda_Galaxy 阅读(321) 评论(0) 推荐(0)
 
 

2019年8月18日

编程技巧
摘要: scanf 读入一行 准备 余子式 代数余子式 伴随矩阵 行列式 阅读全文
posted @ 2019-08-18 15:32 Andromeda_Galaxy 阅读(147) 评论(0) 推荐(0)
 
 

2019年8月13日

类欧
摘要: https://www.luogu.org/blog/shiqingyu/solution-p5170 公式要记 (ai+b)/c; #include<bits/stdc++.h> #define ll long long using namespace std; const int mod=998 阅读全文
posted @ 2019-08-13 12:57 Andromeda_Galaxy 阅读(191) 评论(0) 推荐(0)
 
 

2019年8月5日

需要准备的模板
该文被密码保护。 阅读全文
posted @ 2019-08-05 10:04 Andromeda_Galaxy 阅读(31) 评论(0) 推荐(0)
 
 
1 2 3 4 5 ··· 10 下一页

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3