码迷,mamicode.com
首页 >  
搜索关键字:front    ( 2274个结果
I moved to a new apartment. But ...
The case is like this, I just want to keep a record, for today, for recently, for this whole year of 2015.9.27-2016.9.25. Now I am sitting in front of ...
分类:其他好文   时间:2016-09-25 23:32:12    阅读次数:206
css布局
学习CSS布局:http://zh.learnlayout.com/display.html 前端工程师手册:https://leohxj.gitbooks.io/front-end-database/content/index.html ...
分类:Web程序   时间:2016-09-22 19:37:36    阅读次数:133
Front-end day1
Front-endday11.前端三把刀: 1.html(好比人的骨架)(各种各样标签) (HyperTextMarkupLanguage:超文本标记语言,通过标记符号来显示网页中的各个部分。) 2.css(好比衣服)(各种显示效果) (CascadingStyleSheets:层叠样式表,用于定义HTML元素的显示形式。) 3.javas..
分类:其他好文   时间:2016-09-21 23:28:25    阅读次数:187
Drupal设置首页默认内容
接触Drupal时间不长,记录一下学习点滴~ Drupal首页的内容,默认是取node表的内容展示的,如果想让首页展示自己创表的内容怎么办呢?以Drupal7为例 在这个admin/config/system/site-information这个目录下,找到“Default front page”, ...
分类:其他好文   时间:2016-09-18 11:48:36    阅读次数:213
CakePHP 2.8.8 发布,PHP 开发框架
CakePHP 2.8.8 发布了。CakePHP 是一个运用了诸如ActiveRecord、Association Data Mapping、Front Controller和MVC等著名设计模式的快速开发框架(入门教程qkxue.net)。该项目主要目标是提供一个可以让各种层次的PHP开发人员快 ...
分类:Web程序   时间:2016-09-16 09:04:50    阅读次数:173
简单的循环队列
#include<stdio.h>#include<malloc.h> #define max 10 typedef struct node{int queue[max];int front,rear;}q,*queue;void init(queue p){p->front=-1;p->rear= ...
分类:其他好文   时间:2016-09-14 07:16:27    阅读次数:182
LeetCode-Implement Queue using Stacks
Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front ...
分类:其他好文   时间:2016-09-14 07:15:06    阅读次数:143
简单的顺序队列
#include<stdio.h>#include<malloc.h> #define max 100typedef struct node{ int queue[max]; int front,rear;}q,*queue;void init(queue p){ p->front=-1; p->r ...
分类:其他好文   时间:2016-09-14 07:08:22    阅读次数:120
10 个最好的移动App开发框架
1. Ionic10 个最好的移动App开发框架 Ionic, a front-end framework, a helps building native-like mobile apps with HTML5, CSS3 and JavaScript. It is not a replaceme ...
分类:移动开发   时间:2016-09-12 12:06:59    阅读次数:547
POJ 1753 Flip Game 简单BFS
很简单的搜索题目,随便写。 题目链接 1 #include <stdio.h> 2 #include <string.h> 3 int st; 4 char s[10]; 5 int q[70000],vis[70000],front,tail; 6 const int dx[]={1,-1,0,0 ...
分类:其他好文   时间:2016-09-12 00:18:43    阅读次数:268
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!