fill与memset的区别介绍
例一 #include <iostream>
#include <algorithm>
using namespace std;
const int maxn500;
const int INF1000000000;
bool isin[maxn]{false};
int G[maxn][maxn];
int path[maxn],rescue[maxn],num[maxn];
int weight[maxn];
int cityn…
1. 写完SQL先explain查看执行计划(SQL性能优化)
日常开发写SQL的时候,尽量养成这个好习惯呀:写完SQL后,用explain分析一下,尤其注意走不走索引。
explain select userid,name,age from user
where userid =10086 or age =18;2、操作delete或者update语句,加个limit(S…