上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 216 下一页

2014年1月17日

基于visual Studio2013解决算法导论之004随机排列数组

摘要: 题目随机排列数组解决代码及点评#include #include #include #include typedef struct Node{ int nValue; int *pnValue;}Node;void PrintArr(int *pnArr, int nLen){ for (i... 阅读全文

posted @ 2014-01-17 15:05 三少爷的剑123 阅读(173) 评论(0) 推荐(0)

基于visual Studio2013解决算法导论之003雇佣问题

摘要: 题目雇用问题解决代码及点评#include #include #include #include void PrintArr(int *pnArr, int nLen){ for (int i = 0; i < nLen; i++) { printf("%d ", pnArr[i]); }... 阅读全文

posted @ 2014-01-17 15:01 三少爷的剑123 阅读(97) 评论(0) 推荐(0)

基于visual Studio2013解决算法导论之002归并排序

摘要: 题目归并排序解决代码及点评#include #include #include #include void PrintArr(int *pnArr, int nLen){ for (int i = 0; i nRight) { return; } if (nRight > nLeft) ... 阅读全文

posted @ 2014-01-17 14:56 三少爷的剑123 阅读(126) 评论(0) 推荐(0)

基于visual Studio2013解决算法导论之001插入排序

摘要: 题目插入排序解决代码及点评#include #include #include void InsertSort(int *pnArr, int nLen){ if (pnArr == NULL || nLen == 0) { return; } for (int i = 1; i 0 &... 阅读全文

posted @ 2014-01-17 14:49 三少爷的剑123 阅读(217) 评论(0) 推荐(0)

2014年1月15日

android用户界面之ScrollView教程实例汇总

摘要: --------------------------汇总不容易啊------------------------------- 一、ScrollView基础知识 1.Android中ScrollView - 滚动条控件 http://www.apkbus.com/android-51... 阅读全文

posted @ 2014-01-15 11:37 三少爷的剑123 阅读(197) 评论(0) 推荐(0)

2014年1月14日

android ScrollView--Linearlayout可以上下拖动

摘要: 动态添加: [java] view plaincopy 动态代码上: scrollView=new ScrollView(getApplicationContext()); scrollVi... 阅读全文

posted @ 2014-01-14 16:14 三少爷的剑123 阅读(802) 评论(0) 推荐(0)

在 Windows Azure 网站上使用 Django、Python 和 MySQL:创建博客应用程序

摘要: 编辑人员注释:本文章由 Windows Azure 网站团队的项目经理 Sunitha Muthukrishna 撰写。 根据您编写的应用程序,Windows Azure 网站上的基本Python 堆栈可能完全满足您的需求,也可能不包括您的应用程序所需的所有模块或库。 不用担心,在此博客文章中,... 阅读全文

posted @ 2014-01-14 10:10 三少爷的剑123 阅读(133) 评论(0) 推荐(0)

Windows Azure 网站 (WAWS) 和中间证书

摘要: 编辑人员注释:本文章由 Windows Azure 网站团队的项目经理 Erez Benari 撰写。 在 Windows Azure 网站上使用 SSL 已经司空见惯。虽然向网站上传和分配证书通常简单而直接(如我们最近的博客文章 1 和 2 中所述),但有些客户遇到了困难, 因为其证书提供... 阅读全文

posted @ 2014-01-14 09:23 三少爷的剑123 阅读(130) 评论(0) 推荐(0)

Windows Azure 社区新闻综述(#78 版)

摘要: 欢迎查看最新版本的每周综述,其中包含有关云计算和 Windows Azure 的社区推动新闻、内容和对话。以下是本周的亮点。 博客文章: 博客:Windows Azure BizTalk 服务:如何开始以及何时使用该服务,作者 Richard Seroter(12 月 11 日发布) 博客:W... 阅读全文

posted @ 2014-01-14 09:14 三少爷的剑123 阅读(80) 评论(0) 推荐(0)

2014年1月13日

通过 HTTPS 和 SSL 确保 Windows Azure 网站 (WAWS) 安全

摘要: 编辑人员注释:本文章由 Windows Azure 网站团队的项目经理 Erez Benari 撰写。 随着身份盗窃和各种形式的网络犯罪迅速增多,使用安全套接字层 (SSL) 对网站进行保护变得越来越重要和普遍。如果将网站托管在 Windows Azure 网站 (WAWS) 上,您可能想将其设... 阅读全文

posted @ 2014-01-13 20:24 三少爷的剑123 阅读(95) 评论(0) 推荐(0)

上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 216 下一页

导航