上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 255 下一页
摘要: Lowest Common Ancestor of a Binary Search Tree Total Accepted: 203 Total Submissions: 511 Given a binary search tree (BST), find the lowest common anc 阅读全文
posted @ 2018-03-23 09:10 zhchoutai 阅读(142) 评论(0) 推荐(0) 编辑
摘要: //汉诺塔 void Hanoi(int n,string A,string B,string C){ if(n == 1) cout<<A<<"->"<<C<<endl; else{ Hanoi(n-1,A,C,B); cout<<A<<"->"<<C<<endl; Hanoi(n-1,B,A,C 阅读全文
posted @ 2018-03-23 09:05 zhchoutai 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 前段时间高通公司开源了眼下 较火的开源框架AllJoyn框架 个人对这个框架并不看好, 地址: http://blog.csdn.net/ncscan/article/details/17267327 为了证明我的理论呢。拿出了一个非常久之前的项目! 地址:http://blog.csdn.net/ 阅读全文
posted @ 2018-03-23 08:22 zhchoutai 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1. ASCII码 ASCII (American Standard Code for Information Interchange, 美国标准信息交换代码),是基于拉丁字母的一套编码系统。主要用于显示现代英语和其它西欧语言。它是现今最通用的单字节编码系统。 单个字节能够表示256个不同的字符,只 阅读全文
posted @ 2018-03-22 21:38 zhchoutai 阅读(266) 评论(0) 推荐(0) 编辑
摘要: static class E implements Comparable<E>{ int x ; int y ; int state ; int money ; public E(int x , int y , int state , int money){ this.x = x ; this.y 阅读全文
posted @ 2018-03-22 20:29 zhchoutai 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 首先看一下效果图 大概的思想:先画出颜色为红色的一行文字,測量文字的宽度,假如说是1000,那么截取1000的十分之中的一个的区域,把颜色为蓝色的的一行字画在合格矩形里面。 部分代码例如以下: package com.example.custom.sz; import com.example.cus 阅读全文
posted @ 2018-03-22 19:12 zhchoutai 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 接上篇,Android自己定义View工具:Paint&Canvas(二) 上一篇中介绍的Canvas绘制图形仅仅能画一些常规图形(圆,椭圆,矩形等)。假设想绘制更复杂的图形,Path神器来了。 Path是什么? Path类将多种复合路径(多个轮廓。如直线段、二次曲线、立方曲线)封装在其内部的几何路 阅读全文
posted @ 2018-03-22 17:52 zhchoutai 阅读(10383) 评论(0) 推荐(0) 编辑
摘要: SOAP 消息的基本结构 <?xml version="1.0"?> <soap:Envelope xmlns="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-e 阅读全文
posted @ 2018-03-22 16:03 zhchoutai 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 一.码畜:靠编译器帮自己查语法错误 消灭笔误:编写适合程序猿的键盘练习 if (常量==变量或表达式) 使用goto接力超长的if,switch 连续的if还是if elseif 多个条件的组合:精心的排版 多重括号的匹配 条件编译 各种const:不要纠结各种常量了,这个世界上唯一不变的就是变化。 阅读全文
posted @ 2018-03-22 14:36 zhchoutai 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 创建一个tableView,直接拖拽放在storyboard里面就可以。 (1)先创建一个数据模型类WSCarGroup,在WSCarGroup.h文件里: #import <Foundation/Foundation.h> @interface WSCarGroup : NSObject @pro 阅读全文
posted @ 2018-03-22 13:11 zhchoutai 阅读(261) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 255 下一页