码迷,mamicode.com
首页 >  
搜索关键字:if_else    ( 23991个结果
C语言-回溯例3
排列问题1、实现排列A(n,m)对指定的正整数m,n(约定11) i--; /* 回溯 */ if(a[i]==n && i==1) break; /* 退出循环,结束 */ else a[i]=a[i]+1;}4、代码实现 1 #include 2 #include 3 4 int mai...
分类:编程语言   时间:2014-05-26 12:18:53    阅读次数:242
asp.net防SQL/JS注入攻击:过滤标记
/// /// 过滤标记/// /// 包括HTML,脚本,数据库关键字,特殊字符的源码 /// 已经去除标记后的文字public static string NoHTML(string Htmlstring){if (Htmlstring == null){return "";}else{//删除...
分类:数据库   时间:2014-05-26 08:38:42    阅读次数:345
c语言快速判断一个数是偶数还是奇数
#include int main() { int a; while(1) { printf("please input the number:\n"); scanf("%d",&a); if(a&1) { printf("%d是奇数\n",a); } else { printf("%d是偶数\n",a); } } return 0; }这...
分类:编程语言   时间:2014-05-26 03:36:15    阅读次数:367
数据结构笔试题二
1、C++编成求二叉树的深度;int binTreeDepth(link *head){ int depthl=0,depthr=0; if(head==null) return 0; else{ if ((head->left)!=null) depthl = 1 + binTreeDepth(h...
分类:其他好文   时间:2014-05-26 02:48:07    阅读次数:266
C++的表驱动法
目的:使用表驱动法,替换复杂的if/else和switch/case语句。说明:JS 等其他语言也都支持的.表驱动发示例:http://blog.csdn.net/zhouyulu/article/details/6860907参考资料1. 《代码大全》(第2版)中文版,第18章 表驱动法。
分类:编程语言   时间:2014-05-26 00:55:26    阅读次数:758
C#/asp.net文本长度判断、判断邮件格式、判断下拉菜单、判断是否为数字
/// /// 文本长度判断 /// public static bool TextLength(int min, int max, string s) { if (s.Length max) { return false; } else { return true; } } /// ///...
分类:Web程序   时间:2014-05-25 23:09:29    阅读次数:349
lua入门之一:c/c++ 调用lua
#include //lua头文件 #ifdef __cplusplus extern "C" { #include "lua.h" #include #include } #else #include #include #include #endif int main(int argc,char ** argv) { lua_State * L=NU...
分类:编程语言   时间:2014-05-24 23:16:07    阅读次数:362
数据库一列多行转一行多列
如题: select max(case when name='1' then [temp] else null end) as temp1 , max(case when name='2' then [temp] else null end) as temp2,  max(case when name='3' then [temp] else null end) as...
分类:数据库   时间:2014-05-23 02:37:04    阅读次数:734
Modified LCS (扩展欧几里德)细写了对这个算法思路的理解
题目:Modified LCS 为过此题去仔细研究了下扩展欧几里德算法,领悟了一些精华。 模板为: void gcd(ll a, ll b, ll& d, ll& x, ll& y) { if(!b) {d = a; x = 1; y = 0;} else{ gcd(b, a%b, d, y, x); y -= x*(a/b);} } 这里算出来的x,y是对于方...
分类:其他好文   时间:2014-05-23 00:26:20    阅读次数:377
一行代码的快速排序
很和谐精悍的一行快排代码quicksort1。 import random def quicksort( list ): if list == []: return [] else: cut = list[0] lesser = quicksort( [ x for x in list[1:] if x < cut ]...
分类:其他好文   时间:2014-05-22 22:33:19    阅读次数:402
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!