首页 > 2016年08月10日 > 全部分享
8.环境变量1
前言 Windows中有环境变量,比如我们熟悉的path……那么linux有没? 正文 操作系统 真没有大家想的那么智能,反而是很笨的 譬如我们输入 :ls立马执行 那操作系统是怎么执行的?它怎么知道ls要怎么执行?去哪执行?要执行的程序在哪? 环境变量:简单的说,就是告诉系统,根据命令去哪里(文件... ...
分类:其他   时间:2016-08-10 07:38:03    收藏:0  评论:0  赞:0  阅读:327
拷贝写
重新做人 1 // Copy_On_Write.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <cstring> 6 #include <string> 7 8 using namespace std; 9 10 11 #p ...
分类:其他   时间:2016-08-10 07:37:55    收藏:0  评论:0  赞:0  阅读:249
博客园上好的技术系列收藏
http://blog.oneapm.com/apm-tech/130.html 7天玩转ASP.NET MVC http://www.cnblogs.com/yuangang/p/5748506.html 从入门到精通ASP.NET MVC http://www.cnblogs.com/xiaoh ...
分类:其他   时间:2016-08-10 07:37:42    收藏:0  评论:0  赞:0  阅读:275
Gym 100952D Time to go back 组合学、杨辉三角预处理组合数
组合学 有 n 个礼物, m个朋友, 其中k 个很要好的朋友, 要买 price 大于 d 的礼物 领 price >= d 的礼物个数为 cnt 则如果用 C[cnt][k] * C[n - k][m - k] 则显然不对, 因为这里面前面选的 price >= d的, 后面给普通好朋友选礼物的时候也会选到, 这样总的买的礼物数来说有大量重复了 所以 应该是分步 分类(price >= d 的与 < d 的分开算, 这样就不会相同的礼物选2次了) 首先 C[cnt][k] * C[n...
分类:其他   时间:2016-08-10 06:35:12    收藏:0  评论:0  赞:0  阅读:336
Gym 100952H Special Palindrome 非递减的回文串、dfs打表、查数列网站OEIS
非递减的回文串、打表 比赛结束后看了下public 的代码就我们队是打表过的, 别人都是正规的过的, ⊙﹏⊙‖∣尴尬 分奇偶用 dfs 搞出非递减的左半边串, 然后求出这个的和 ans[sum + i]++; 对于偶数个的直接dfs, 对于奇数的则枚举mid, 然后依次dfs 然后只打了前ans[50] 及以前的, 因为后面的比较大时间不够的, 所以打出前50的表然后到数列网站 OEIS 查了一下, 还真有,?? 所以把那前250个ans贴到 txt里, 然后写一个中间程序 把这些数据 转换成 printf...
分类:Web开发   时间:2016-08-10 06:35:02    收藏:0  评论:0  赞:0  阅读:303
MySQL---数据库从入门走向大神系列(八)-在java中执行MySQL的存储过程
http://blog.csdn.net/qq_26525215/article/details/52143733在上面链接的博客中,写了如何用MySQL语句定义和执行存储过程Java执行存储过程:准备表stud:列类型分别为: varchar,varchar,int定义的存储过程分别为:p1:-无参delimiter && create procedure p1() begin inse...
分类:数据库技术   时间:2016-08-10 06:34:54    收藏:0  评论:0  赞:0  阅读:202
Binary Search Tree Iterator
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling next() will return the n ...
分类:其他   时间:2016-08-10 06:34:23    收藏:0  评论:0  赞:0  阅读:206
Fraction to Recurring Decimal
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format. If the fractional part is repeating ...
分类:其他   时间:2016-08-10 06:33:52    收藏:0  评论:0  赞:0  阅读:304
javaScript的function
一、函数的声明方式 1、普通的函数声明 2、使用变量初始化函数 3、使用Function构造函数 第三种不推荐,因为这种语法导致解析两次代码(第一次解析常规ECMAScript代码,第二次解析传入构造函数中的字符串),从而影响性能,但我们可以通过这种语法来理解,函数是对象,函数名是指针的概念 二、作 ...
分类:编程语言   时间:2016-08-10 06:33:44    收藏:0  评论:0  赞:0  阅读:208
离散化+线段树 POJ 3277 City Horizon
POJ 3277 City Horizon Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 18466 Accepted: 5077 Time Limit: 2000MS Memory Limit: 65536K Total Su ...
分类:其他   时间:2016-08-10 06:33:32    收藏:0  评论:0  赞:0  阅读:339
Sum of Two Integers
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Example:Given a = 1 and b = 2, return 3. Credits:Speci ...
分类:其他   时间:2016-08-10 06:33:22    收藏:0  评论:0  赞:0  阅读:323
关于路由器的设置
最近从芬兰的oulu转到espoo学习,设置路由器困扰了我一个多星期。在以前学习的地方,只要按照正常的程序设置路由器,就可以直接用了,但是到了这里,路由器连上Wi-Fi以后显示的无internet连接,莫名其妙。首先说一下,aalto这边的网络是不需要输入账户和密码就可以直接联网的。所以按照正常的输 ...
分类:其他   时间:2016-08-10 06:33:02    收藏:0  评论:0  赞:0  阅读:387
[Practical Git] Navigate git command pager output with Unix less commands
When using a git command that can have a large amount of output (like git log, git diff, or git blame), Git opens the command output in our terminal " ...
分类:其他   时间:2016-08-10 06:32:52    收藏:0  评论:0  赞:0  阅读:314
javascript面向对象系列第二篇——创建对象的5种模式
[1]对象字面量 [2]工厂模式 [3]构造函数模式 [4]原型模式 [5]组合模式 ...
分类:编程语言   时间:2016-08-10 06:32:42    收藏:0  评论:0  赞:0  阅读:205
javaScript的call关键字
...
分类:编程语言   时间:2016-08-10 06:32:12    收藏:0  评论:0  赞:0  阅读:176
[Practical Git] Switching between current branch and last checkout branch
When working on a project, it is much easier to work on features and bugs in isolation of the rest of the project. We can do this with git branches; a ...
分类:其他   时间:2016-08-10 06:32:02    收藏:0  评论:0  赞:0  阅读:263
数字信号处理C语言(3) ------FFT
快速傅里叶变换 fft.c ...
分类:编程语言   时间:2016-08-10 06:31:22    收藏:0  评论:0  赞:0  阅读:294
c++分割字符串(类似于boost::split)
由于c++字符串没有split函数,所以字符串分割单词的时候必须自己手写,也相当于自己实现一个split函数吧! 如果需要根据单一字符分割单词,直接用getline读取就好了,很简单 如果是多种字符分割,比如,。!等等,就需要自己写一个类似于split的函数了: 例如:输入hello world!W ...
分类:编程语言   时间:2016-08-10 06:31:02    收藏:0  评论:0  赞:0  阅读:257
css3变形-translate
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>css变形功能</title> <style> body{ background-color: #b9eef0; } h3,p{ margin:100px 0px; ...
分类:Web开发   时间:2016-08-10 06:30:56    收藏:0  评论:0  赞:0  阅读:253
Http请求中Content-Type讲解以及在Spring MVC中的应用
引言: 在Http请求中,我们每天都在使用Content-type来指定不同格式的请求信息,但是却很少有人去全面了解content-type中允许的值有多少,这里将讲解Content-Type的可用值,以及在Spring MVC中如何使用它们来映射请求信息。 1. Content-Type Medi ...
分类:编程语言   时间:2016-08-10 06:30:42    收藏:0  评论:0  赞:0  阅读:260
1538条   上一页 1 ... 63 64 65 66 67 ... 77 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!