学生成绩管理系统
<?php
include_once 'stuService.class.php';
include_once 'student.class.php';
session_start();
$name = $_SESSION['student_name'];
if($name == "")
...
分类:
Web开发 时间:
2015-04-28 22:57:30
收藏:
0 评论:
0 赞:
1 阅读:
951
管理员管理系统
管理员名:
...
分类:
Web开发 时间:
2015-04-28 22:57:26
收藏:
0 评论:
0 赞:
0 阅读:
262
1.运行带参数的程序
$0表示程序名,$1表示第一个参数,$2表示第二个参数,一次类推,直到第九个参数$9
# vi factorial
#!/bin/sh
f=1
for((i=1;i<=$1;i++))
do
f=$[ $f * $i]
done
echo $f
测试:
[root@master test]# ./factorial 5
120
注意:如果有多个参数...
分类:
系统服务 时间:
2015-04-28 22:57:10
收藏:
0 评论:
0 赞:
0 阅读:
340
<?php
include_once '../mysql.class.php';
include_once '../confing.php';
include_once 'adminService.class.php';
//吧用户登陆放到session中,一直检测
// session_start();
if(!isset($_POST['nam...
分类:
Web开发 时间:
2015-04-28 22:57:00
收藏:
0 评论:
0 赞:
0 阅读:
338
题意:
给2*n个数,输入的这些数构成 sum=(a[1]^b[1])*(a[2]^b[2])...
其实就是整数分解完的数。
然后让你输出分解sum-1的结果。
从大到小。
思路:
就是输入麻烦点。
注意题目说了1的时候要输出空行。
代码:
#include"cstdlib"
#include"cstdio"
#include"cstring"
#include"cmath"
...
分类:
其他 时间:
2015-04-28 22:56:50
收藏:
0 评论:
0 赞:
0 阅读:
309
//PECS:producer-extends-comsumer-super
import com.google.common.collect.Lists;
import java.util.Arrays;
import java.util.List;
/**
* Created by jianjun.yu on 15-4-21.
*/
public class GTest {
...
分类:
编程语言 时间:
2015-04-28 22:56:40
收藏:
0 评论:
0 赞:
0 阅读:
312
11624 Fire!
Joe works in a maze. Unfortunately, portions of the maze have caught onfire,and the owner of the maze neglected to create a firee scape plan.Help Joe escape the maze.
Given ...
分类:
其他 时间:
2015-04-28 22:56:31
收藏:
0 评论:
0 赞:
0 阅读:
398
/**
* Created by jianjun.yu on 15-4-22.
*/
public class MultimapUtils {
//创建简单treeMultiMap, key有序, value为普通arrayList(guava 自带treeMultiMap,value是有序,并且为set继承类)
public static Multimap createS...
分类:
其他 时间:
2015-04-28 22:56:20
收藏:
0 评论:
0 赞:
0 阅读:
403
题目大意:给定一个集合SS,对于i=1...mi=1...m求有多少二叉树满足每个节点的权值都在集合SS中且权值和为ii
构造答案多项式F(x)F(x)和集合SS的生成函数C(x)C(x),那么
根节点的左子树是一棵二叉树,右子树是一棵二叉树,本身的权值必须在集合S中,此外还有空树的情况
故有F(x)=F2(x)C(x)+1F(x)=F^2(x)C(x)+1
解得F(x)=1±1?4C(x)...
分类:
其他 时间:
2015-04-28 22:56:11
收藏:
0 评论:
0 赞:
0 阅读:
362
其实我认为搜索==暴力,只不过搜索是用比较特殊的方式来实现,所以听起来高大上一点,本质上和暴力是一个意思
不知道写这样闪瞎狗眼的代码会不会被人打~
#include
#include
#include
using namespace std;
int rem[30];
int main()
{
int target;
string ans;
while(cin>>target>>ans&...
分类:
其他 时间:
2015-04-28 22:56:00
收藏:
0 评论:
0 赞:
0 阅读:
327
系统自带的指示器类型有好几种,一般我们开发者都是用第三方或者自定义!小白哥这次就简单地给大家介绍一下.......
分类:
移动平台 时间:
2015-04-28 22:55:50
收藏:
0 评论:
0 赞:
0 阅读:
689
题目链接:http://poj.org/problem?id=3264
题目大意:n个数,求区间[ L,R ]的最大最小值之差;
题目分析:
RQM:dp[ i ][ j ], i开始长度为2^j的长度的区间最值;
O(nlog n)的预处理区间值,O(1)的查询;
代码:
//author: ACsorry
//result: accept
#include
#inclu...
分类:
其他 时间:
2015-04-28 22:55:40
收藏:
0 评论:
0 赞:
0 阅读:
341
今天小练了一套题~这一套题好像都是思维题
A Exam
n个学生排成一排编号1,2,3....n,那么会发现第i个学生编号 与 第i+1个学生编号相邻,这样不满足要求。题目要求任意相邻的两学生编号差值的绝对值不为1;
思路:
把 编号为奇数的抽出来为一组 1,3,5,7,9....
把 编号为偶数的抽出来为一组 2,4,6,8,10...
...
分类:
其他 时间:
2015-04-28 22:55:30
收藏:
0 评论:
0 赞:
0 阅读:
341
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QToolTip
from PyQt5.QtGui import QFont
class Example(QWidget):
def __init__(self):
super().__init__()
sel...
分类:
其他 时间:
2015-04-28 22:55:21
收藏:
0 评论:
0 赞:
0 阅读:
513
在WinInet编程中,同步的使用方法如下:
InternetOpen->InternetOpenUrl->HttpQueryInfo->InternetReadFile->InternetCloseHandle;在InternetOpenUrl和InternetReadFile时会导致程序阻塞,知道操作完成,同步的好处就是比较简单,调试方便。
异步的使用方法如下:
1)InternetOp...
分类:
Windows开发 时间:
2015-04-28 22:55:17
收藏:
0 评论:
0 赞:
0 阅读:
348
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
from PyQt5.QtCore import QCoreApplication
class Example(QWidget):
def __init__(self):
super().__init__()
s...
分类:
其他 时间:
2015-04-28 22:55:00
收藏:
0 评论:
0 赞:
0 阅读:
378
redis 队列操作的例子(php)...
分类:
Web开发 时间:
2015-04-28 22:54:50
收藏:
0 评论:
0 赞:
0 阅读:
372
网址:https://leetcode.com/problems/longest-palindromic-substring/
题意:
找出最长回文字符串.
解法1:
自然是暴力枚举,把每一个元素从中间往左右遍历,如果是且是最长的存下字符串.
比如abccba.
定位元素是2->c.
找左1->b.不行
找右3->c.可以->找左右同时->找左右同时
找左右同时.不行
思路就是...
分类:
其他 时间:
2015-04-28 22:54:40
收藏:
0 评论:
0 赞:
0 阅读:
311
编辑命令:
Ctrl – a 移动光标到行首
Ctrl – e 移动光标到行尾
Ctrl – l 清屏(功能同 clear 命令)
Ctrl – d 删除光标所在位置的字符
Ctrl – t 光标所在位置的字符和其前面的字符进行交换
Ctrl – k 剪切从光标所在位置到行尾的字符
Ctrl – u 剪切从光标所在位置到行首的字符
Ctrl – y 粘贴由上两个命令删除的字符到当前光标所在位置...
分类:
系统服务 时间:
2015-04-28 22:54:20
收藏:
0 评论:
0 赞:
0 阅读:
367
动态规划
01背包
问题描述
求解思路
代码实现
放入哪些物品
代码动态规划我在上一篇博客里已经讲了一点动态规划了,传送门:算法学习 - 动态规划(DP问题)(C++)这里说一下,遇到动态规划应该如何去想,才能找到解决办法。最主要的其实是要找状态转移的方程,例如上一篇博客里面,找的就是当前两条生产线的第i个station的最短时间和上一时刻的时间关系。minTime(station[1][i]) =...
分类:
编程语言 时间:
2015-04-28 22:54:10
收藏:
0 评论:
0 赞:
0 阅读:
453