g****e 发帖数: 1829 | 1 请问各路神仙。大家都是很有经验了,想请教一下。
我的一个硬盘有5个区。前面两个装的windows的ntfs分区,分别是c和d,其中c是系统
盘。后面三个分区是ext3和swap的装的linux。用的grub。
我想做的事情是,只重装windows。linux不动。但是我的c盘太小了,我想从d盘匀点过
来,可是我d盘的内容我不想动了。我的意思是,在不重新格式化的情况下,能不能重
新resize c和d,让c大点,d小点,而且保持d盘内容不动?
能不能给点提示咋做呢?
小弟拜谢先! |
|
w*l 发帖数: 43 | 2 Hi,
I set a image button and want to put icon into this button, and this button is
256 X 256. How can I put a icon with 1024 X 1024 into this button by using
some java swing resize icon functions in program ? I have too many images to
handle, so I can not edit the images one by one on windows image editor.
Thanks. |
|
i***r 发帖数: 1035 | 3 在windows下,用win键加arrow组合键,可以快速resize window为半屏、全屏等
linux 下有吗? (我知道mac是没有的) |
|
l**********g 发帖数: 503 | 4 Linux硬盘开始做的不够大,现在VMware Workstation下已经改大了,Linux系统怎么改
大啊?在GParted里,原来的分区不能改啊,Resize都给灰掉了。
怎么弄?谢谢! |
|
c****s 发帖数: 2487 | 5 hi, i intended to put a figure and a table (tabular) vertically on
the same slide, and had to resize them to fit into the page. two
issues were hard to solve:
1) i used \includegraphics, but had problem using \textheight
2) couldn't bring the table into a fond size environment
anyone has clue how they'd be solved?
many thx! |
|
p*u 发帖数: 2454 | 6 After installation, the / disk is just 1.5G but another disk is more than
70G. I want to make / bigger, how to resize the partitions and allocate
more space on / ?? Please help, thanks a lot! |
|
s*********e 发帖数: 2076 | 7 我个人觉得这种 碎钻 戒指 resize 应该是重新加工 了。。。不然没有办法做
5AVE 6楼 就 可以做这个事情 |
|
w**u 发帖数: 1831 | 8 上周6买的,说送去resize,好了电话给我,大约2-3 business days,可是现在还没
收到电话,不知道一般需要几天啊?
谢谢! |
|
b*****e 发帖数: 349 | 9 你要resize是只要改文件大小,不是剪裁的话,打开图片,另存为,然后quality改差
点就行了。 |
|
S*A 发帖数: 7142 | 10 Linux 里面:
convert -resize 1024x768 *.JPG |
|
t******e 发帖数: 2 | 11 买来k100d后,第一次专门外出正式拍片 ISO200 自动白平衡
18-55 AV 33mm f11 1/60s 略ps resize
18-55 AV 55mm f11 1/200s -0.7EV 略ps resize
50-200 AV 200mm f11 1/125s -0.7EV 略ps resize
50-200 AV 80mm f4.5 1/1600s -0.7EV 略ps resize
50-200 AV 125mm f11 1/125s 略ps resize
18-55 AV 55mm f6.3 1/1000s 略ps resize
18-55 AV 55mm f11 1/1250s -1.0EV resize
18-55 AV 55mm f8 1/80s resize
50-200 AV 115mm f8 1/125s resize
18-55 AV 24mm f11 1/500s -1.3EV 调白平衡 ps resize |
|
d*********r 发帖数: 11979 | 12 Add a comment (474 comments )
Email | Start Following | Print | Facebook Share on Facebook |
View full size
Investigators work inside a Ruby Hill home allegedly under federal
investigation. new
Investigators work inside a Ruby Hill home allegedly under federal
investigation.Credit SusanC.Schena
Photos (6)
Home on Germano Way in Ruby Hill is under Homeland Security investigation.
Credit SusanC.Schena http://o1.aolcdn.com/dims-shared/dims3/PATCH/resize/273x203/http://hss-prod.hss.aol.com/hss/s... 阅读全帖 |
|
o******3 发帖数: 91 | 13 听了二爷的话,开始做hackerrank
今天被lego blocks绊住了
测试数据集可以过 但是提交数据集就超时了 虽然我用的确实是DP
下面是题目和我的代码,还望指点
You have 4 types of lego blocks, of sizes 1 * 1 * 1, 1 * 1 * 2, 1 * 1 * 3
and 1 * 1 * 4. Assume you have infinite number of blocks of each type.
You want to make a wall of height N and width M out of these blocks. The
wall should not have any holes in it. The wall you build should be one solid
structure. A solid structure means that it should not be possible to
separate the wall along any vertical line withou... 阅读全帖 |
|
x*******9 发帖数: 138 | 14 做了一下
>> 给定一个数字数组 ,其中每个元素是从末端数小于原数组中该元素的个数。求原数
组。
Time complexity: O(n * logn) // quick-sort + traverse
Memo complexity: O(n)
>> 令s[i]为a[i+1..n-1]中比a[i]大的数的数量。求最大的s[i]。要求O(nlogn)
Time complexity: O(n * logn) // Manipulate the Binary Indexed Tree
Memo compleixty: O(n)
#include
#include
#include
#include
#include
#include
using namespace std;
#define print(x) cout << x << endl
#define input(x) cin >> x
const int SIZE = 1024;
// @brief Bin... 阅读全帖 |
|
y**b 发帖数: 10166 | 15 今天把一个三维CFD超声速模拟的Matlab code转成C++代码同其他模拟进行耦合,
发现C++在处理多维数组方面实在是繁琐,比如处理一个动态五维数组,光分配
就得这么搞:
std::valarray< std::valarray< std::valarray
AL> > > > > arrayRoeFlux;
arrayRoeFlux.resize(nx);
for (std::size_t i = 0; i < arrayRoeFlux.size(); ++i) {
arrayRoeFlux[i].resize(ny);
for (std::size_t j = 0; j < arrayRoeFlux[i].size(); ++j) {
arrayRoeFlux[i][j].resize(nz);
for (std::size_t k = 0; k < arrayRoeFlux[i][j].size(); ++k) {
... 阅读全帖 |
|
|
f*******r 发帖数: 976 | 17 题目就是external sort的思想。统计单词的次数,明显用map。注意文
件很大,要用long,以免溢出。
在你读文件并且增加这个map时,内存不够用,这是你要把临时结果写入临时文件。你
可以设计一个threshold,比如1 billion,当map的size达到这个值时,你就把map和临
时文件merge到另一个临时文件里。最后再把这个文件rename到原来的临时文件。再把
map清空,继续读原文件直到结束。 C++代码如下:
// Split the string into words that consists of a..z and A..Z.
void split(const string &s, vector &res) {
int beg = -1;
for (int i = 0, e = s.size(); i < e; ++i) {
if ((s[i] >= 'a' && s[i] <= 'z') || (s[i] >= 'A' && s[i] <= 'Z')) {
if (beg == ... 阅读全帖 |
|
|
d**********x 发帖数: 4083 | 19 这个优化之后用的时间大概是顶楼解法的一半(leetcode, 1020ms vs 530ms)
为了清晰起见我就没用bitarray,这个解法的额外空间还是比较多。。
#include
#include
using namespace std;
class Solution {
public:
int totalNQueens(int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
n_ = n;
principal_diagonal_.resize(2 * n - 1);
principal_diagonal_.assign(2 * n - 1, 0);
minor_diagonal_.resize(2 * n - 1);
minor_diagonal_.assign(2 * n - 1, 0);
... 阅读全帖 |
|
|
y****d 发帖数: 226 | 21 来自主题: NextGeneration版 - 婚戒划痕 劝楼主想一想再去翻新。上次我和老公去tiffany想resize戒指,然后那个saleslady一
看我老公的戒指就说结婚好多年了吧,这个resize同时会给翻新,以前的划痕就都没了
,她说看到我们戒指的颜色就会觉得我们很幸福的在一起好多年了..总之后来她这么一
说我们也决定等等再看看是不是真的有必要resize;也挺舍不得打磨掉日积月累的痕迹
的。 |
|
|
i*****r 发帖数: 1302 | 23 我可以在nvadia control panel里调resize或者直接调resolution去fit电视屏幕,但进
游戏就不行. 另外resize下面有个select the desktop resizing model reported to
the display,可以选auto-select,underscan,overscan,do not report.不知道撒意思 |
|
V********D 发帖数: 733 | 24 前几天去店里问,说是只有刚买的时候是免费resize到顾客满意为止,但是之后再
resize是要收费的,$150左右一次,因为每次resize都是要送回总部请珠宝匠完成的 |
|
N**N 发帖数: 102 | 25 warranty是99.99
7号的圈,需要resize成5号,大妈小二说resize要charge $50,买新的圈resize也收费
? |
|
wh 发帖数: 141625 | 26 来自主题: LeisureTime版 - 发帖的人 你一般resize多少%?我是在microsoft office picture manager里resize,在最上方
的picture功能键下有个resize,在选择框里选择最大的“document-large",缩出来的
文件是200多b。如果想再小可以选择更小的“document-small”、“web-large/small
”等。 |
|
m********l 发帖数: 6748 | 27 Pentax K20D, Sigma mini-wide II f11 (100% cropped)
Samsung GX10, Sigma 24-60 /f4 (resized)
Canon 40D, EF85/f4 (100% cropped)
Canon 40D, EF85/f2 (resized)
Pentax K100D, Tokina 28-85 /f3.5 (resized) |
|
i*******e 发帖数: 62 | 28 一直以来苹果都以用户体验标称自己产品的优秀,在iphone, ipad, ipod touch上也确
实做到了。不说完美,也应该称得上优秀。但是如果把目光转向真正需要电脑操作的桌
面系统,mac osx,却有很多脑残无极限的设计,而且这些nc设计由来已久,即使是最
新的ml版本也没有解决所有问题。在这儿举几个例子, 提醒准备从windows转成mac的用
户,同时也希望有经验的高手可以提供一些解决方案。
1.无法改变系统窗口字体默认大小。设想2560x1440的分辨率,27的imac屏幕,字体小
的只能用放大镜看。使用过ical的同学恐怕对此都深恶痛绝。
2.窗口最大化按钮。即使在mountain lion里,也不过是部分程序有此功能。
3. 窗口resize。windows中所有窗口的resize可以通过上下左右任意4条边的拖动,mac
的窗口只能通过右下角小的可怜的resize handle来调整。
4. 快速最小化。windows中窗口最小化后会在taskbar中出现这一程序的图标,点击图
标会重新激活,再次点击会重新最小化。mac的窗口最小化后出现在dock,点击后激活
,但是... 阅读全帖 |
|
t*****e 发帖数: 15794 | 29 问个体外话,
我要是在国内买个假iphone,
然后去买个prepaid service,
能用吗?
产品的优秀,在iphone, ipad, ipod touch上也确 : 实做到了。不说完美,也应该称
得上优秀。但是如果把目光转向真正需要电脑操作的桌 : 面系统,mac osx,却有很多
脑残无极限的设计,而且这些nc设计由来已久,即使是最 : 新的ml版本也没有解决所
有问题。在这儿举几个例子, 提醒准备从windows转成mac的用 : 户,同时也希望有经
验的高手可以提供一些解决方案。 : 1.无法改变系统窗口字体默认大小。设想
2560x1440的分辨率,27的imac屏幕,字体小 : 的只能用放大镜看。使用过ical的同学
恐怕对此都深恶痛绝。 : 2.窗口最大化按钮。即使在mountain lion里,也不过是部分
程序有此功能。 : 3. 窗口resize。windows中所有窗口的resize可以通过上下左右任
意4条边的拖动,mac : 的窗口只能通过右下角小的可怜的resize handle来调整。 : .
.................. |
|
C********N 发帖数: 1263 | 30 听你口气也是做admin的吧,你懂得多也用不着这种口气训人吧。我在3-400人的企业管
orcle server 也管了一年多呀,vi editor shortcut 我也可以用一半。谁不懂
partition table啦,我的习惯是动手前多research,多做准备工作,不至于出问题后
后悔。如果有前人经验,为什么不学习一下呢。
在此文中已经提供了重新resize partition的方法(https://help.ubuntu.com/
community/HowtoResizeWindowsPartitions),我想知道的是在现有3个primary分区的
情况下,是resize 现有的C: partition to another two primary partition, 还是在
现有的C:partition划logic partition. 两种方法那种跟适合我的情况。
真的很受不了你说话的口气。我全奖Master in Information System,7年国内国外
system admin的经验,被你说得什么都不懂一样。气人。
Windows Vista and... 阅读全帖 |
|
E*V 发帖数: 17544 | 31 1. you can use 'tab' kind of screen, ctrl+a + c, create tab
ctrl+a+ number or ctrl+a+n (next)
2. Ctrl+a S split terminal horizontally into regions Ctrl+a c to
create new window there
Ctrl+a :resize resize region
Ctrl+a :fit fit screen size to new terminal size Ctrl+a F is the same
. Do after resizing xterm
Ctrl+a :remove remove region Ctrl+a X is the same
Ctrl+a tab Move to next region |
|
g*********s 发帖数: 1782 | 32 The following code has compilation errors if "-DDEBUG" is not specified.
In function `StripePainter::init_tab(std::basic_string
std::char_traits, std::allocator >)':
inclass_static.cpp:(.text+0xb): undefined reference to
`StripePainter::colorset'
inclass_static.cpp:(.text+0x1b): undefined reference to
`StripePainter::orig_color'
inclass_static.cpp:(.text+0x23): undefined reference to
`StripePainter::colorset'
inclass_static.cpp:(.text+0x58): undefined reference to
`StripePainte... 阅读全帖 |
|
y**b 发帖数: 10166 | 33 这几天用了几次动态多维数组,感觉用vector比new要方便一些,
也不容易出错,比如一个四维数组:
// 4-dimensional array of cellVec
typedef pair > cellT;
vector< vector< vector < cellT > > > cellVec;
cellVec.resize(nx);
for (int i = 0; i < cellVec.size(); ++i) {
cellVec[i].resize(ny);
for (int j = 0; j < cellVec[i].size(); ++j)
cellVec[i][j].resize(nz);
}
// mark each cell as not searched
for (int i = 0; i < nx; ++i)
for (int j = 0; j < ny; ++j)
for (int k = 0; k < nz; ++k) {
... 阅读全帖 |
|
A*******s 发帖数: 9638 | 34 来自主题: Medicalpractice版 - 恐怖的UTI I could not see your photo.:)
Possibly your file is too big. You can go to microsoft office, then follow:
1. microsoft office tools,
2. microsoft office picture manager.
3. Use resize.
Remember, after you resize it, save as a different file name. Then upload
the resized photo. |
|
m********n 发帖数: 3558 | 35 原来的理解是engagement ring 戴中指 wedding ring 戴无名指
但是大伙show的时候是engagement 和 wedding 都戴在无名指上;貌似两个都戴的话
似乎也是叠加起来比较好看。但是因为有resize的问题,如果考虑到将来要戴在一个手
指上的,用engagement ring的时候就用无名指的size 吗?
另外到底是左手还是右手啊?原来以为是男左女右,但是看到的似乎别人又是戴左手
的(因为右手要干活?)
还有一个问题,大的圈可以resize改小,但是要是以后长胖了,那圈可以resize大吗?
...... |
|
w*******y 发帖数: 60932 | 36 Pretty highly rated software on Giveaway of the Day.
Link: Link:
http://www.giveawayoftheday.com/paragon-partition-manger-11-per
From the website:
Giveaway of the Day - Paragon Partition Manager 11 Personal Special Edition
(English Version)
March 23, 2011
Get the original! Paragon Softwares advanced partitioning tools help you
completely control and manage your hard disks!
With growing hard drive capacity, the need to reasonably split up the space
is more important than ever. This easy-to-use pa... 阅读全帖 |
|
c**i 发帖数: 13113 | 37 ☆─────────────────────────────────────☆
StephenKing (88) 于 (Mon Jan 30 09:13:28 2012, 美东) 提到:
韩仁均贴出两封韩寒17岁时写的家书。
一封的邮戳是1999年5月11日,另一封同年同月的31日。
第二封没有问题。
第一封信有两处可疑:
一,信封背面的字,是在邮戳盖上以后写的。
二,信纸只有一道折痕,而信纸的一半面积是大于信封的。简单讲,就是螺丝比螺母大
一号。
我愿意和范冰冰对赌2000万,第一封信是伪造的。
☆─────────────────────────────────────☆
yelo (没有昵称) 于 (Mon Jan 30 09:14:51 2012, 美东) 提到:
你又按捺不住了
☆─────────────────────────────────────☆
kayi (嘉儿) 于 (Mon Jan 30 09:19:26 2012, 美东) 提到:
他可以挺着大肚子发帖,不容易
☆────────────────────────────────... 阅读全帖 |
|
|
o******t 发帖数: 4384 | 39 赞照片~
paint不好用,如果是WinXP
昨天发包子问人怎么resize,答案是faststone. 很容易下载也很好用,在Edit里就有
Resize选项 |
|
t*********u 发帖数: 26311 | 40 resize不能解决capacity的问题
只能提前做一个初始化吧
resize后然后就可以直接用index assign了
push back应该比index assign快
毕竟是内建的 应该有编译级别的优化? |
|
s*********e 发帖数: 2076 | 41 代购方法:
首先:由于本人的代购都是通过正规渠道,Tiffany美东区经理折扣价,由经理直接代购
出来, 然后交到本人,没有经过任何转手 和你 自己在店铺 或者官网 享受一模一样
的服
务, 包括RESIZE,换款式, 免费清洗, 保修等的一切服务! 绝对安全可靠!!!
目前税
率是 6%
第二:请你先了解本人在二手市场的 FEEDBACK 和信用 再决定是否通过我来代购,
不要动不动就问我是不是真的啊?安不安全啊的话。。。不信任就不要购买,非诚勿扰
,谢谢!!!
第三:告诉我你要的具体产品号码 尺寸大小,价钱, 本人帮你代购, 提供原装
TIFFANY receipt 和你 自己在店铺 或者官网 享受一模一样的服务, 包括RESIZE,
换款式, 免费清洗, 保修等的一切服务!
折扣 一律按照税后 8.9折 付款
需要时间:正常需要3-5个工作日来完成订购, 如果缺货,或者缺少SIZE 需要1-2个星期完
成.
邮寄方式: 钻戒一律采用 OVER NIGHT 来, 其他可以用代签名的 LABEL 。。。安全方便!
付款: BOA 或者NY 见面 交易!
BBS 已经有无数人... 阅读全帖 |
|
t*****e 发帖数: 15794 | 42 【 以下文字转载自 LeisureTime 讨论区 】
发信人: wh (wh), 信区: LeisureTime
标 题: 如何贴视频和图片
发信站: BBS 未名空间站 (Sun May 25 16:13:48 2014, 美东)
一、如何贴视频:
1.youtube视频:
拷贝网页地址,在地址前加v,http后面如有s的去掉s。去掉watch?, 把=改成/。例
如:
https://www.youtube.com/watch?v=r1HBiQ34CNM -->
vhttp://www.youtube.com/v/r1HBiQ34CNM
链接顶格贴,不留空格,就显示为内嵌:
2.虾米、土豆、新浪、优酷等视频:
在视频下方或该网页上找到转贴地址或flash地址(通常以.swf结尾),拷贝地址,前
面加v,顶格贴即可。
(注:虾米目前不对海外用户开放)
友情提醒:贴视频时最好同时把原视频的原始链接贴出来(请去掉http后面的s,便于
直接点击),一来方便telnet用户及手机和平板用户,二来有些视频不能内嵌,必须点
击原始链接观看。
二、如何贴图片:
1.在web下添加附件,附件必... 阅读全帖 |
|
p**e 发帖数: 335 | 43 int vector,1000个整数, 一个一个push_back,问array resize 多少次?如果是1,
000,000个整数, 一个一个push_back,问array resize 多少次? |
|
l*********8 发帖数: 4642 | 44 下面是我的程序
vector a 存储intervals [a[0] a[1]), [a[2] a[3]), [a[4] a[5]) ....
开始写在纸上,后来在电脑上调试才发现有几个bugs. 一遍写对不容易啊:-(
#include
#include
using namespace std;
void MergeToIntervals(vector & a, int left, int right)
{
int leftIdx = lower_bound(a.begin(), a.end(), left) - a.begin();
int rightIdx = upper_bound(a.begin(), a.end(), right) - a.begin();
int vectorSizeChange = 0;
int leftPos = -1; // left boundary's final position in the vector. -1 means it w... 阅读全帖 |
|
l*********8 发帖数: 4642 | 45 下面是我的程序
vector a 存储intervals [a[0] a[1]), [a[2] a[3]), [a[4] a[5]) ....
开始写在纸上,后来在电脑上调试才发现有几个bugs. 一遍写对不容易啊:-(
#include
#include
using namespace std;
void MergeToIntervals(vector & a, int left, int right)
{
int leftIdx = lower_bound(a.begin(), a.end(), left) - a.begin();
int rightIdx = upper_bound(a.begin(), a.end(), right) - a.begin();
int vectorSizeChange = 0;
int leftPos = -1; // left boundary's final position in the vector. -1 means it w... 阅读全帖 |
|
d****n 发帖数: 1637 | 46 差不多用了30分钟
#define BSZ 4096
char buffer[BSZ];//buffer same size as 4096
int curr=BSZ-1; //current position read in buffer
int eof=0; //eof flag
extern char * read4096();
char *getline(){
char *s; //return string
int i, ssz=0; //size of s
for(;;){
if (!eof){
if (curr==(BSZ-1)) {
strcpy(buffer, read4096()); //read API
curr=0;
if (strlen(buffer)<4096 ) e... 阅读全帖 |
|
i******t 发帖数: 22541 | 47 自己编辑可以通过啊 放在leetcode 说time error。。。
咋回事啊
class Solution {
public:
int minimumTotal(vector > &triangle) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int minV = INT_MAX;
int m = triangle.size();
vector > vecV;
vecV.resize(m);
if(m==0) return 0;
if(m==1) return triangle[0][0];
vecV[0][0]=triangle[0][0];
for(int i=1;i
{
int... 阅读全帖 |
|
z***8 发帖数: 17 | 48
下面的code需要美化,不过应该是O(n):
void FakeRadixSort(vector &num, vector &temp, int N)
{
vector count;
count.resize(2*N);
int i=0;
for (i=0; i<2*N; i++)
{
count[i] = 0;
}
int size = num.size();
for (i=0; i
{
int index = num[i] % N;
index += N;
++ count[index];
}
for (i=1; i<2*N; i++)
{
count[i] += count[i-1];
}
for (i=size-1; i>=0; i--)
{
int index = num[i] % N;
... 阅读全帖 |
|
g********E 发帖数: 178 | 49 查了下原来析构是destruct,明白了,如果我就用默认的,
This destroys all container elements, and deallocates all the storage
capacity allocated by the vector using its allocator.
这样是不是析构就不如clear/resize快?
resize不错,非常符合我的需要:)
call |
|
s*****b 发帖数: 8 | 50 我来贴一个。
Rocket fule (Software Engineer - Machine Learning Scientist ) 技术电面后code
test. code通过了所有test cases. 人家看过code 后就拒了。问题在哪里呢?请各位
牛人不吝赐教。题目本版以前贴过
You are standing in a rectangular room and are about to fire a laser toward
the east wall. Inside the room a certain number of prisms have been placed.
They will alter the direction of the laser beam if it hits them. There
are north-facing, east-facing, west-facing, and south-facing prisms. If the
laser beam strikes an east-facing prism, its cours... 阅读全帖 |
|