码迷,mamicode.com
首页 >  
搜索关键字:front    ( 2274个结果
现代软件工程_团队项目_阿尔法阶段_团队展示_2017.11.12
刘荪傲 Email: 839471955@qq.com Free time: 12:00am ~12:00pm Introduction: 一脸懵逼的成为了小组组长,深感惶恐 大二搞了一年电路设计,并未涉猎太多软件相关 大三希望通过软件工程提高代码水平 懒癌晚期,深感唯有通过各种DDL才能督促自己学 ...
分类:其他好文   时间:2017-11-12 11:09:18    阅读次数:144
语言和框架学习路线
It has benn three months to learn the front-end development from back-end. I have some experience to share. 1. Firstly, read the API. If you can't und ...
分类:编程语言   时间:2017-11-10 15:26:04    阅读次数:250
最好的前端hacking备忘录——集锦
链接:http://www.zcfy.cc/article/the-best-front-end-hacking-cheatsheets-all-in-one-place-4520.html?t=new ...
分类:其他好文   时间:2017-11-10 12:43:14    阅读次数:157
NOIP2017 Day-1 模板荟萃
#include<bits/stdc++.h> #define MAXN 100005 using namespace std; int read(){ int x=0;char c=getchar(); while(c<'0'||c>'9')c=getchar(); while(c>='0'&&c ...
分类:其他好文   时间:2017-11-09 22:35:29    阅读次数:208
lightoj 1321 Sending Packets (概率)
从0到n-1需要传输s个包,传输的时候每条边安全到达的概率为pi,每次传输的时间为2K,如果在传输时候没有安全到达,则要重新传送,求最小的传送时间 题意:http://www.lightoj.com/volume_showproblem.php?problem=1321 ...
分类:其他好文   时间:2017-11-09 11:35:36    阅读次数:170
zabbix实操随笔
vmware 9.0安装,vmware tools安装 fedora 15.0安装1G内存以上fedora上基本操作指令1.vmtools 共享文件在linux上安装有问题,出现找不到**.so.1之类的库,主要是由于windows文件名对于linux不兼容问题。解决办法,将共享文件夹中的tar文件 ...
分类:其他好文   时间:2017-11-08 17:48:17    阅读次数:79
POJ 2449 Remmarguts' Date ( 第 k 短路 && A*算法 )
题意 : 给出一个有向图、求起点 s 到终点 t 的第 k 短路、不存在则输出 -1 #include<stdio.h> #include<string.h> #include<queue> #include<algorithm> using namespace std; const int INF ...
分类:编程语言   时间:2017-11-07 22:02:21    阅读次数:166
用邻接矩阵实现的深度优先遍历和广度优先遍历
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define ERROR -1 8 #define MAXVEX 100 9 10 typedef int VertexType; 11 typedef i... ...
分类:其他好文   时间:2017-11-07 13:28:29    阅读次数:482
迷宫最短路径 问题
/* 迷宫最短路径 问题 */ #include #include #include using namespace std; struct Node{ int x, y; Node(int x,int y) { this->x = x; this->y = y; } }; const int N ... ...
分类:其他好文   时间:2017-11-07 12:23:44    阅读次数:157
2017 清北济南考前刷题Day 5 afternoon
期望得分:100+100+30=230 实际得分:0+0+0=30 T1 直接模拟 #include<cstdio> #include<iostream> using namespace std; void read(int &x) { x=0; char c=getchar(); while(!i ...
分类:其他好文   时间:2017-11-07 00:15:55    阅读次数:254
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!