上一页 1 2 3 4 5 6 7 8 9 ··· 408 下一页
摘要: var url=''; try { url = window.top.document.referrer ; } catch(M) { if (window.parent) { try { url = window.parent.document.referrer; } catch(L) { url 阅读全文
posted @ 2016-04-21 08:23 blfshiye 阅读(181) 评论(0) 推荐(0) 编辑
摘要: QML与C++交互:在qml中使用QSqlQueryModel显示数据库数据 本文博客链接:http://blog.csdn.net/jdh99,作者:jdh,转载请注明. 參考链接: http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in 阅读全文
posted @ 2016-04-20 21:12 blfshiye 阅读(2134) 评论(0) 推荐(0) 编辑
摘要: 首先说说Adapter详细的类的继承关系。例如以下图 Adapte为接口它的实现类的对象作为AdapterView和View的桥梁,Adapter是装载了View(比方ListView和girdView要显示的数据)。相关View要显示的数据全然与View解耦。View要显示的数据从Adapter里 阅读全文
posted @ 2016-04-20 20:27 blfshiye 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1166 解析: 树状数组 基础知识:http://blog.csdn.net/mullerwch/article/details/38382831 /* ID:muller8 Name: 1166 敌兵布 阅读全文
posted @ 2016-04-20 20:25 blfshiye 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Delete Node in a Linked List Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the 阅读全文
posted @ 2016-04-20 17:59 blfshiye 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1. regist.jsp文件 <%@ page language="java" pageEncoding="utf-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>校 阅读全文
posted @ 2016-04-20 17:24 blfshiye 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 不easy系列之(4)——考新郎 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 25425 Accepted Submission(s): 9 阅读全文
posted @ 2016-04-20 16:40 blfshiye 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1.背景 项目须要,打算用python实现矩阵的去噪和归一化。用numpy这些数学库没有找到非常理想的函数。所以一怒之下自己用标准库写了一个去噪和归一化的算法,效率有点低,只是还能用,大家假设有须要能够拿去。 (1)去噪算法:依据概率论的知识,假设一组数据服从正态分布,我们设均值是n,方差是v,那么 阅读全文
posted @ 2016-04-20 15:10 blfshiye 阅读(5170) 评论(0) 推荐(1) 编辑
摘要: Problem Description ACboy was kidnapped!! he miss his mother very much and is very scare now.You can't image how dark the room he was put into is, so 阅读全文
posted @ 2016-04-20 13:56 blfshiye 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1:环境搭建: (1)首先进入官网,http://libgdx.badlogicgames.com/download.html 点击下方的Releases。进行下载最新的版本号就可以。这个为我们开发使用的jar和so库。我们假设纯粹开发。不想去看源代码,则下载这一个就能够了。 (2)源代码下载: 点 阅读全文
posted @ 2016-04-20 11:31 blfshiye 阅读(265) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 408 下一页