码迷,mamicode.com
首页 >  
搜索关键字:return    ( 60766个结果
POJ 3251 Big Square
A quite challenging problem,最终看了题解才写出来,惭愧 /*Sample Input 6 J*J*** ****** J***J* ****** **B*** ****** Sample Output 4 */ 这道题里用到的几种思想还是值得我回味和思考的就是: 1、将复 ...
分类:其他好文   时间:2017-01-21 22:10:04    阅读次数:461
hdu1070
#include <stdio.h>#include <string.h>struct milk{ char brand[128]; int price; int volume; double value;}a[100];int main(void){ int i,t,n,d; struct mil ...
分类:其他好文   时间:2017-01-21 21:22:00    阅读次数:207
hdu1075
#include <map> #include <string.h> #include <iostream> using namespace std; #include<stdio.h> int main() { char s1[20],s2[20],s[3005],s3[20],c,a[100]; ...
分类:其他好文   时间:2017-01-21 21:15:59    阅读次数:193
快速排序函数及二分法匹配
快速排序: void sort(int *a,int left,int right){ if(left>=right) { return ; } int i=left; int j=right; int key=a[left]; while(i<j) { while (i<j&&key<=a[j]) ...
分类:编程语言   时间:2017-01-21 20:23:37    阅读次数:184
【bzoj3282】Tree
LCT模板题; 话说xor和的意思是所有数xor一下; ...
分类:其他好文   时间:2017-01-21 19:38:29    阅读次数:197
EntityFramework Core 1.1有哪些新特性呢?我们需要知道
前言 在项目中用到EntityFramework Core都是现学现用,及时发现问题及时测试,私下利用休闲时间也会去学习其他未曾遇到过或者用过的特性,本节我们来讲讲在EntityFramework Core 1.1中出现了哪些新特性供我们使用。 EntityFramework Core 1.1新特性 ...
分类:其他好文   时间:2017-01-21 19:37:31    阅读次数:294
1020. 月饼 (25)
#include #include using namespace std; struct node{ double num; double price; double weight; }; int cmp(const void *a, const void *b){ node aa = *(nod... ...
分类:其他好文   时间:2017-01-21 19:37:16    阅读次数:324
PHPCMS快速建站系列之pc:get标签的应用
GET标签使用方式如下: {pc:get sql="SELECT * FROM phpcms_member" cache="3600" page="$page" dbsource="discuz" return="data"} <ul> {loop $data $key $val} {$val[us ...
分类:Web程序   时间:2017-01-21 18:42:17    阅读次数:270
小白学flask之路由,反向路由,路由参数
# -*- coding: utf-8 -*- from flask import Flask, request, url_for app = Flask(__name__) @app.route("/") def hello(): return "Hell2323o23 World!" @app.... ...
分类:其他好文   时间:2017-01-21 18:32:53    阅读次数:212
小白学flask之hello,world
from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!" if __name__ == "__main__": app.debug = True #开启debug模... ...
分类:其他好文   时间:2017-01-21 17:22:23    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!