上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 137 下一页
摘要: #pragma once #include <stdio.h> #include <malloc.h> #include <assert.h> typedef int DataType; typedef struct Node { DataType data; struct Node* next; 阅读全文
posted @ 2017-06-21 08:34 lytwajue 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 在mac自带着一个远程window的软件。这让我们远程起来很方便。 其步骤和window远程也很相似。 输入ip地址: 输入username以及password: 然后点击确定就可以。 只是。这时就出现了一个问题。此时远程的桌面仅仅是一个小窗体。并且,仅仅能缩小只是放大。。。只是,就有个快捷键能够全 阅读全文
posted @ 2017-06-20 15:56 lytwajue 阅读(293) 评论(0) 推荐(0) 编辑
摘要: RecyclerViewLibrary A RecyclerView libirary ,has some support, like headerAdapter/TreeAdapter,and PulltoRefreen/Drag 一个RecyclerView扩展库,当中主要包括 1:针对Recy 阅读全文
posted @ 2017-06-20 14:48 lytwajue 阅读(103) 评论(0) 推荐(0) 编辑
摘要: @IBAction func compute(sender: AnyObject) { // 19*x^7-31*x^5+16*x^2+7*x-90=0 // newton迭代法求一元方程的解,最大求解范围[-100000,100000] mytitle.stringValue="19*x^7-31 阅读全文
posted @ 2017-06-20 14:05 lytwajue 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 社会化分享是眼下必学且火热的功能。之前有写第三方登录,那仅仅是社会化分享的一部分。今天来玩玩分享微信朋友圈。 为了方便操作,还是依照步骤写。 一,注冊 注冊应用已经在这里具体说明过了,这里就不多提了。 二,在微信开放平台中授权开发人员身份,以及注冊应用 链接:https://open.weixin. 阅读全文
posted @ 2017-06-20 13:13 lytwajue 阅读(456) 评论(0) 推荐(0) 编辑
摘要: spring web mvc 感觉就是高大上啊!啥都是配置文件就能够了。所以第一步就是弄清楚配置文件使用和总体框架的流程! Spring web mvc最重要的当然是Controller,也就是首先要明确的就是Dispatch,它将用户的请求转化成Controller处理的对象。在 在Spring的 阅读全文
posted @ 2017-06-20 11:42 lytwajue 阅读(123) 评论(0) 推荐(0) 编辑
摘要: modelspublic function getLists($company_id = ''){ $companye_model = Company::model()->findByPk($company_id); if($companye_model){ $model = $this->mode 阅读全文
posted @ 2017-06-20 11:02 lytwajue 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 多区域显示(7)-花边 设计要点:页面设计、多窗体、图形、链接 阿金:哎,你的“文艺范”数据弄的怎么样啦? 秀秀:挺好啊 阿金:弄那些没实用的花边挺费劲的吧? 秀秀:没有啊?为什么是“那些”?一个即可了。 阿金:四个角不得弄4个? 秀秀:哎哟!图片能够设层,把一张带有4个角图案的图片放在全部图片链接 阅读全文
posted @ 2017-06-20 09:41 lytwajue 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4395 题目意思是说,给出一个数n。表示存在一个整数序列1……n,然后进行四种操作: 操作一:输 阅读全文
posted @ 2017-06-20 08:50 lytwajue 阅读(115) 评论(0) 推荐(0) 编辑
摘要: //5种迭代器。为了激活重载机制,定义的5个类型。每种迭代器就是一个类型。 struct input_iterator_tag{}; struct output_iterator_tag{}; struct forward_iterator_tag : public input_iterator_t 阅读全文
posted @ 2017-06-20 08:11 lytwajue 阅读(167) 评论(0) 推荐(0) 编辑
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 137 下一页