2016-9-1
看了30天
HTML有长进了:
$(function(){
$(".pic ul li").each(function(i){//遍历每一张图片
var Deg = 360/$(".pic ul li").size();
$(this).css({
"transform":"rotateY("+i*Deg+"deg...
注释后补
#include
#include
const int maxn = 100 + 5;
char pic[maxn][maxn];
int m, n, idx[maxn][maxn];
void dfs(int r, int c, int id) {
if(r < 0 || r >= m || c < 0 || c >= n) return ;
if(idx[r][c] > 0 || pic[r][c] ...